smitb2005 commited on
Commit
420c71d
·
1 Parent(s): 946c26c
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -9,8 +9,7 @@ WORKDIR $HOME/app
9
 
10
  COPY --chown=user app/requirements.txt requirements.txt
11
 
12
- RUN python -m venv /venv && \
13
- /venv/bin/pip install --no-cache-dir --upgrade -r requirements.txt
14
 
15
  COPY --chown=user . .
16
 
 
9
 
10
  COPY --chown=user app/requirements.txt requirements.txt
11
 
12
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
 
13
 
14
  COPY --chown=user . .
15