Files
kittycad.py/Dockerfile

14 lines
166 B
Docker
Raw Normal View History

FROM python:3.9
2021-12-06 12:24:34 -08:00
RUN pip install \
poetry
WORKDIR /usr/src/
COPY . /usr/src/
RUN poetry update && poetry install
2021-12-06 12:24:34 -08:00
# Set the default command to bash.
CMD ["bash"]