davanstrien HF Staff commited on
Commit
bb50ef7
·
1 Parent(s): 3c75a0a

Fix Dockerfile to copy serve.py instead of server.py

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -18,7 +18,7 @@ COPY requirements.txt .
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
20
  # Copy application files
21
- COPY server.py .
22
 
23
  # Expose the port that HF Spaces expects
24
  EXPOSE 7860
 
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
20
  # Copy application files
21
+ COPY serve.py .
22
 
23
  # Expose the port that HF Spaces expects
24
  EXPOSE 7860