Files
kittycad.py/Dockerfile
dependabot[bot] d32c643b1e Bump python from 3.9 to 3.13 in the minor group (#412)
Bumps the minor group with 1 update: python.


Updates `python` from 3.9 to 3.13

---
updated-dependencies:
- dependency-name: python
  dependency-version: '3.13'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-04-03 08:50:07 -07:00

14 lines
179 B
Docker

FROM python:3.13
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"]