benjolo commited on
Commit
3a65cf1
1 Parent(s): 0f77955

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -12,7 +12,7 @@ RUN apt-get update \
12
  WORKDIR /
13
 
14
  # Install requirements.txt
15
- RUN pip install --no-cache-dir --upgrade -r /requirements.txt
16
 
17
  # Start the FastAPI app on port 7860, the default port expected by Spaces
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
12
  WORKDIR /
13
 
14
  # Install requirements.txt
15
+ RUN pip install --no-cache-dir --upgrade -r backend/requirements.txt
16
 
17
  # Start the FastAPI app on port 7860, the default port expected by Spaces
18
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]