Skip to content

Commit

Permalink
fix: Fix Docker build using incorrect command (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 authored Apr 23, 2024
1 parent e5e9879 commit deb9113
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ ENV PATH="$VIRTUAL_ENV/bin:$PATH"

COPY src /app/src
COPY requirements.lock pyproject.toml /app/
RUN pip install --no-cache-dir -r requirements.lock && edge-proxy-config
RUN pip install --no-cache-dir -r requirements.lock
RUN edge-proxy-render-config

EXPOSE 8000

Expand Down

0 comments on commit deb9113

Please sign in to comment.