Files
kittycad.py/Dockerfile
Jess Frazelle 2a3cec9aac start of refactor
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-02-27 18:39:04 -08:00

14 lines
152 B
Docker

FROM python:latest
RUN pip install \
poetry
WORKDIR /usr/src/
COPY . /usr/src/
RUN poetry install
# Set the default command to bash.
CMD ["bash"]