ayush2917 commited on
Commit
b82faec
·
verified ·
1 Parent(s): dfb25b2

Update huggingface_docker/Dockerfile

Browse files
Files changed (1) hide show
  1. huggingface_docker/Dockerfile +2 -2
huggingface_docker/Dockerfile CHANGED
@@ -8,10 +8,10 @@ WORKDIR /app
8
  COPY . .
9
 
10
  # Install Python dependencies
11
- RUN pip install -r huggingface_docker/requirements.txt
12
 
13
  # Expose the port Flask will run on (required by Hugging Face Spaces)
14
  EXPOSE 5000
15
 
16
  # Run the Flask app
17
- CMD ["python", "backend/app.py"]
 
8
  COPY . .
9
 
10
  # Install Python dependencies
11
+ RUN pip install -r requirements.txt
12
 
13
  # Expose the port Flask will run on (required by Hugging Face Spaces)
14
  EXPOSE 5000
15
 
16
  # Run the Flask app
17
+ CMD ["python", "app.py"]