Created
April 17, 2024 16:15
-
-
Save mermelstein/404221abe56e78ac9e73133273ea3127 to your computer and use it in GitHub Desktop.
uv in Docker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM python:3.10 | |
WORKDIR /app | |
COPY . /app | |
RUN pip install uv | |
RUN uv pip install --system --no-cache-dir -r requirements.txt | |
CMD python -u main.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment