From 93bd8d8dab7d84ff3efc1d6112d04a4f9a52ba66 Mon Sep 17 00:00:00 2001 From: kshitijrajsharma Date: Thu, 9 Jan 2025 20:36:13 +0100 Subject: [PATCH] fix: correct Dockerfile API requirements copy command --- backend/Dockerfile.API | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/Dockerfile.API b/backend/Dockerfile.API index f62f16d8..89fec1c8 100644 --- a/backend/Dockerfile.API +++ b/backend/Dockerfile.API @@ -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 @@ -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"] \ No newline at end of file