Mythus commited on
Commit
e430682
·
verified ·
1 Parent(s): eeee653

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -5,7 +5,7 @@ WORKDIR /app
5
 
6
  # Copy the current directory contents into the container at /app
7
  # (including run.py, filmpertutti.py, and requirements.txt)
8
- COPY . /app
9
  # Install any needed packages specified in requirements.txt
10
  RUN pip install fastapi uvicorn requests beautifulsoup4 lxml jinja2 python-multipart
11
  #EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace
 
5
 
6
  # Copy the current directory contents into the container at /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 uvicorn requests beautifulsoup4 lxml jinja2 python-multipart
11
  #EXPOSE the port, for now default is 8080 cause it's the only one really allowed by HuggingFace