Skip to content

Commit 0d7f8a0

Browse files
committed
Install production requirements in container
1 parent 30b9fb9 commit 0d7f8a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ WORKDIR /app
77
ENV PYTHONDONTWRITEBYTECODE=1
88
ENV PYTHONUNBUFFERED=1
99

10-
RUN pip install --upgrade pip
1110
COPY requirements.txt /app/
1211
COPY requirements/ /app/requirements/
1312
RUN pip install --no-cache-dir -r requirements.txt
13+
RUN pip install --no-cache-dir -r /app/requirements/production.txt
1414

1515
FROM python:3.10-slim
1616

0 commit comments

Comments
 (0)