Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -7,7 +7,9 @@ WORKDIR /app
|
|
| 7 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 8 |
ADD . /app
|
| 9 |
# Install any needed packages specified in requirements.txt
|
| 10 |
-
RUN pip install fastapi
|
|
|
|
|
|
|
| 11 |
#EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
|
| 12 |
EXPOSE 8000
|
| 13 |
|
|
|
|
| 7 |
# (including run.py, filmpertutti.py, and requirements.txt)
|
| 8 |
ADD . /app
|
| 9 |
# Install any needed packages specified in requirements.txt
|
| 10 |
+
RUN pip install fastapi requests beautifulsoup4 lxml jinja2 python-multipart json
|
| 11 |
+
RUN pip install --upgrade uvicorn
|
| 12 |
+
|
| 13 |
#EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
|
| 14 |
EXPOSE 8000
|
| 15 |
|