Update Dockerfile
Browse files- 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
|
16 |
-
ENV 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 |
|