Spaces:
Running
Running
fix
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -5,6 +5,7 @@
|
|
| 5 |
RUN npm ci
|
| 6 |
COPY frontend/ .
|
| 7 |
RUN npm run build # produces /fe/dist
|
|
|
|
| 8 |
|
| 9 |
# ---------- Backend image ----------
|
| 10 |
FROM python:3.11-slim
|
|
|
|
| 5 |
RUN npm ci
|
| 6 |
COPY frontend/ .
|
| 7 |
RUN npm run build # produces /fe/dist
|
| 8 |
+
RUN echo "Frontend built at $(date)" > /fe/build-timestamp.txt
|
| 9 |
|
| 10 |
# ---------- Backend image ----------
|
| 11 |
FROM python:3.11-slim
|