gargaman07 commited on
Commit
0de5893
·
verified ·
1 Parent(s): c6e228d

Update .dockerfile

Browse files
Files changed (1) hide show
  1. .dockerfile +1 -4
.dockerfile CHANGED
@@ -19,10 +19,7 @@ COPY requirements.txt .
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Copy the rest of the application code into the container
22
- COPY main.py .
23
- COPY index.html .
24
- COPY yamnet_class_map.csv .
25
- COPY ./models ./models
26
 
27
  # Make port 7860 available to the world outside this container
28
  # Hugging Face Spaces often use this port by default
 
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Copy the rest of the application code into the container
22
+ COPY . .
 
 
 
23
 
24
  # Make port 7860 available to the world outside this container
25
  # Hugging Face Spaces often use this port by default