Hugo014 commited on
Commit
e4221ed
·
verified ·
1 Parent(s): 4d168ed

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -1
Dockerfile CHANGED
@@ -1,5 +1,13 @@
1
  FROM python:3.11.13
 
 
2
  WORKDIR /app
 
 
3
  COPY . .
4
- RUN pip install --no-cache-dir -r requirements.txt
 
 
 
 
5
  CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:super_kart_api"]
 
1
  FROM python:3.11.13
2
+
3
+ # Set the working directory inside the container
4
  WORKDIR /app
5
+
6
+ # Copy all files from the current directory to the container's working directory
7
  COPY . .
8
+
9
+ # Install dependencies
10
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
11
+
12
+ # Start with Gunicorn
13
  CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:7860", "app:super_kart_api"]