Files
kittycad.py/Dockerfile
Jess Frazelle 11a1948ebc fix dockerfile / makefile (#72)
* 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>
2023-04-06 16:09:33 -07:00

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"]