BinaryONe
commited on
Commit
·
d272162
1
Parent(s):
973c33a
InitialCommit -Modification in Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -28,7 +28,7 @@ COPY ./nginx.conf /etc/nginx/nginx.conf
|
|
| 28 |
# Python virtual environment
|
| 29 |
RUN python3 -m venv /app/PyEnv && \
|
| 30 |
/app/PyEnv/bin/pip install --upgrade pip && \
|
| 31 |
-
/app/PyEnv/bin/pip install
|
| 32 |
chmod -R +x /app
|
| 33 |
|
| 34 |
RUN touch /app/flask.log && \
|
|
|
|
| 28 |
# Python virtual environment
|
| 29 |
RUN python3 -m venv /app/PyEnv && \
|
| 30 |
/app/PyEnv/bin/pip install --upgrade pip && \
|
| 31 |
+
/app/PyEnv/bin/pip install -r /app/requirements.txt && \
|
| 32 |
chmod -R +x /app
|
| 33 |
|
| 34 |
RUN touch /app/flask.log && \
|