Spaces:
Running
Running
muralipala1504 commited on
Commit ·
6109e6d
1
Parent(s): 3d52446
Fix: copy Dockerfile.hf to Dockerfile for HF build
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
|
@@ -8,8 +8,9 @@ RUN apt-get update && apt-get install -y \
|
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Copy frontend static files
|
| 11 |
-
|
| 12 |
-
|
|
|
|
| 13 |
# Copy backend
|
| 14 |
COPY deepshell-backend/ ./deepshell-backend/
|
| 15 |
|
|
|
|
| 8 |
&& rm -rf /var/lib/apt/lists/*
|
| 9 |
|
| 10 |
# Copy frontend static files
|
| 11 |
+
ARG CACHEBUST=4
|
| 12 |
+
COPY index.html app.js services.css about.html contact.html ./
|
| 13 |
+
RUN ls -la /app/*.html
|
| 14 |
# Copy backend
|
| 15 |
COPY deepshell-backend/ ./deepshell-backend/
|
| 16 |
|