Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -7,7 +7,7 @@ COPY --chown=user . /app
|
|
| 7 |
|
| 8 |
RUN pip install --upgrade pip
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
-
|
| 11 |
COPY --chown=user . .
|
| 12 |
RUN ls -al /app
|
| 13 |
|
|
|
|
| 7 |
|
| 8 |
RUN pip install --upgrade pip
|
| 9 |
RUN pip install -r requirements.txt
|
| 10 |
+
ENV PATH="/home/user/.local/bin:${PATH}"
|
| 11 |
COPY --chown=user . .
|
| 12 |
RUN ls -al /app
|
| 13 |
|