Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
robbibt authored Sep 6, 2024
1 parent d5aa860 commit 3cea87e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ RUN apt-get update && \
WORKDIR /app

# Copy requirements file first
COPY requirements.in /app
COPY requirements.in /app/requirements.in

# Install uv and requirements
RUN pip install uv && \
uv pip compile requirements.in -o requirements.txt && \
uv pip install -r requirements.txt --system
uv pip compile /app/requirements.in -o /app/requirements.txt && \
uv pip install -r /app/requirements.txt --system

# Now copy the rest of the files
COPY . /app
Expand Down

0 comments on commit 3cea87e

Please sign in to comment.