BinaryONe commited on
Commit
e95fa34
·
1 Parent(s): f1f2ead

Nginx Changes

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -33,8 +33,10 @@ RUN python3 -m venv /app/venv && \
33
 
34
  #Before
35
  RUN python --version && pip3 list
 
36
  # Activate the virtual environment (important!)
37
  RUN source /app/venv/bin/activate
 
38
 
39
  #After
40
  RUN python --version && pip3 list
 
33
 
34
  #Before
35
  RUN python --version && pip3 list
36
+
37
  # Activate the virtual environment (important!)
38
  RUN source /app/venv/bin/activate
39
+ RUN pip install --no-cache-dir -r /app/requirements.txt
40
 
41
  #After
42
  RUN python --version && pip3 list