Files
speckle-automate-data-shield/Dockerfile
T
Jonathon Broughton 1fa18fb657 Update dependency installation commands
- Changed `uv pip install` to `uv pip sync` in workflow and Dockerfile.
- Added new package with dependencies in lock file.
- Removed old package definition from lock file.
2025-03-24 17:29:23 +00:00

18 lines
747 B
Docker

# We use the official Python 3.13 image as our base image and will add our code to it. For more details, see https://hub.docker.com/_/python
FROM python:3.13-slim
# We set the working directory to be the /home/speckle directory; all of our files will be copied here.
WORKDIR /home/speckle
# Copy all of our code and assets from the local directory into the /home/speckle directory of the container.
# We also ensure that the user 'speckle' owns these files, so it can access them
# This assumes that the Dockerfile is in the same directory as the rest of the code
COPY . /home/speckle
# uv will manage dependency installation
RUN pip install uv
# Install your package and dependencies
RUN uv pip sync --system
CMD ["python", "main.py", "run"]