ariansyahdedy commited on
Commit
de54dfc
·
1 Parent(s): 27e17be

Edit docker

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,8 +10,9 @@ COPY requirements.txt /app/
10
  # Install dependencies
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
- # Copy the rest of the application
14
  COPY app /app/app
 
15
 
16
  # Expose port (Hugging Face Spaces typically uses 7860 by default, but you can adjust if needed)
17
  EXPOSE 7860
 
10
  # Install dependencies
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # Copy app and static files
14
  COPY app /app/app
15
+ COPY static /app/static
16
 
17
  # Expose port (Hugging Face Spaces typically uses 7860 by default, but you can adjust if needed)
18
  EXPOSE 7860