Spaces:
Running
Running
BinaryONe
commited on
Commit
·
5604924
1
Parent(s):
8ba973d
Nginx Changes-Over Alpine
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -24,7 +24,9 @@ RUN python3 -m venv /app/venv
|
|
24 |
RUN source /app/venv/bin/activate
|
25 |
|
26 |
# Install Python dependencies from the requirements file within the virtual environment
|
27 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
|
28 |
|
29 |
# Set ownership of the app directory
|
30 |
RUN chown -R appuser:appgroup /app
|
|
|
24 |
RUN source /app/venv/bin/activate
|
25 |
|
26 |
# Install Python dependencies from the requirements file within the virtual environment
|
27 |
+
#RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
28 |
+
RUN pip install -r requirements.txt
|
29 |
+
|
30 |
|
31 |
# Set ownership of the app directory
|
32 |
RUN chown -R appuser:appgroup /app
|