Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -9,8 +9,8 @@ WORKDIR /code
|
|
| 9 |
|
| 10 |
COPY --chown=user ./requirements.txt /code/requirements.txt
|
| 11 |
|
|
|
|
| 12 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
| 13 |
-
|
| 14 |
COPY --chown=user . .
|
| 15 |
|
| 16 |
# Expose the port on which Streamlit will run
|
|
|
|
| 9 |
|
| 10 |
COPY --chown=user ./requirements.txt /code/requirements.txt
|
| 11 |
|
| 12 |
+
ENV PATH="/home/user/.local/bin:${PATH}"
|
| 13 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
|
| 14 |
COPY --chown=user . .
|
| 15 |
|
| 16 |
# Expose the port on which Streamlit will run
|