benjolo commited on
Commit
fdffb83
1 Parent(s): 3e36cbf

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -12
Dockerfile CHANGED
@@ -1,23 +1,23 @@
1
- # # Use the official Python 3.10.9 image
2
- # FROM python:3.10.9
3
 
4
- # # Copy the current directory contents into the container at .
5
- # COPY . .
6
 
7
- # # Install OS Libs
8
- # RUN apt-get update \
9
- # && apt-get -y install ffmpeg
10
 
11
- # # Change to backend as working directory
12
- # WORKDIR backend/
13
 
14
- # # Install requirements.txt
15
  # RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
16
  # RUN pip install git+https://github.com/huggingface/transformers.git
17
  # RUN pip install pydantic[email]
18
 
19
- # # Start the FastAPI app on port 7860, the default port expected by Spaces
20
  # CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
21
- # # CMD ["gunicorn", "-b", "0.0.0.0:7860","main:app","--workers","1","-k","uvicorn.workers.UvicornWorker"]
22
 
23
  RUN python test.py
 
1
+ # Use the official Python 3.10.9 image
2
+ FROM python:3.10.9
3
 
4
+ # Copy the current directory contents into the container at .
5
+ COPY . .
6
 
7
+ # Install OS Libs
8
+ RUN apt-get update \
9
+ && apt-get -y install ffmpeg
10
 
11
+ # Change to backend as working directory
12
+ WORKDIR backend/
13
 
14
+ # Install requirements.txt
15
  # RUN pip install --no-cache-dir --upgrade -r ./requirements.txt
16
  # RUN pip install git+https://github.com/huggingface/transformers.git
17
  # RUN pip install pydantic[email]
18
 
19
+ # Start the FastAPI app on port 7860, the default port expected by Spaces
20
  # CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
21
+ # CMD ["gunicorn", "-b", "0.0.0.0:7860","main:app","--workers","1","-k","uvicorn.workers.UvicornWorker"]
22
 
23
  RUN python test.py