Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -22,7 +22,7 @@ ENV HF_HOME=/tmp/huggingface_cache
|
|
| 22 |
COPY --chown=user . $HOME/app
|
| 23 |
|
| 24 |
# Install any needed packages specified in requirements.txt
|
| 25 |
-
RUN pip3 install
|
| 26 |
|
| 27 |
# Make port 80 available to the world outside this container
|
| 28 |
EXPOSE 7860
|
|
|
|
| 22 |
COPY --chown=user . $HOME/app
|
| 23 |
|
| 24 |
# Install any needed packages specified in requirements.txt
|
| 25 |
+
RUN pip3 install -r $HOME/app/requirements.txt
|
| 26 |
|
| 27 |
# Make port 80 available to the world outside this container
|
| 28 |
EXPOSE 7860
|