Skip to content

Commit

Permalink
fix: correct Dockerfile API requirements copy command
Browse files Browse the repository at this point in the history
  • Loading branch information
kshitijrajsharma committed Jan 9, 2025
1 parent 27e7c7b commit 93bd8d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile.API
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN python3 -m venv /app/venv

RUN /app/venv/bin/pip install --no-cache-dir --upgrade pip setuptools wheel

COPY api-requirements.txt api-requirements.txt ./
COPY api-requirements.txt ./

RUN /app/venv/bin/pip install --no-cache-dir -r api-requirements.txt

Expand Down Expand Up @@ -59,4 +59,4 @@ EXPOSE 8000

ENTRYPOINT ["/app/api-entrypoint-lock.sh"]

CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]

0 comments on commit 93bd8d8

Please sign in to comment.