Spaces:

npc0 commited on
Commit
41550fb
1 Parent(s): 8e9dc23

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -7,7 +7,7 @@ WORKDIR /app
7
  COPY . /app
8
 
9
  RUN python3 -m venv /app/env
10
- RUN env\Scripts\activate
11
  RUN pip install --no-cache-dir --upgrade pip
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
 
 
7
  COPY . /app
8
 
9
  RUN python3 -m venv /app/env
10
+ ENV PATH="/app/env/bin:$PATH"
11
  RUN pip install --no-cache-dir --upgrade pip
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13