Skip to content

Instantly share code, notes, and snippets.

@mermelstein
Created April 17, 2024 16:15
Show Gist options
  • Save mermelstein/404221abe56e78ac9e73133273ea3127 to your computer and use it in GitHub Desktop.
Save mermelstein/404221abe56e78ac9e73133273ea3127 to your computer and use it in GitHub Desktop.
uv in Docker
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