dragxd commited on
Commit
c8e3740
·
verified ·
1 Parent(s): 68c5ec8

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,8 +12,8 @@ RUN apt-get update && \
12
  COPY requirements.txt .
13
 
14
  # Create venv and install dependencies
15
- RUN python -m venv /opt/venv
16
- ENV PATH="/opt/venv/bin:$PATH"
17
  RUN pip install --upgrade pip && \
18
  pip install --no-cache-dir -r requirements.txt
19
 
 
12
  COPY requirements.txt .
13
 
14
  # Create venv and install dependencies
15
+ RUN python -m venv venv
16
+ ENV PATH="/app/venv/bin:$PATH"
17
  RUN pip install --upgrade pip && \
18
  pip install --no-cache-dir -r requirements.txt
19