* update Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix ci Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * fix Signed-off-by: Jess Frazelle <github@jessfraz.com> * I have generated the latest API! --------- Signed-off-by: Jess Frazelle <github@jessfraz.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
14 lines
178 B
Docker
14 lines
178 B
Docker
FROM python:3.9
|
|
|
|
RUN pip install \
|
|
poetry
|
|
|
|
WORKDIR /home/user/src/
|
|
|
|
COPY . /home/user/src/
|
|
|
|
RUN poetry update && poetry install
|
|
|
|
# Set the default command to bash.
|
|
CMD ["bash"]
|