Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ WORKDIR /app
|
|
7 |
COPY . /app
|
8 |
|
9 |
RUN python3 -m venv /app/env
|
10 |
-
|
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 |
|