Spaces:
Sleeping
Sleeping
Commit
·
bb50ef7
1
Parent(s):
3c75a0a
Fix Dockerfile to copy serve.py instead of server.py
Browse files- 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
|
| 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
|