Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -11,7 +11,8 @@ RUN npm ci && npm run build
|
|
| 11 |
|
| 12 |
# Stage 2: Serve with nginx
|
| 13 |
FROM nginx:alpine
|
| 14 |
-
ARG CACHE_BUST
|
|
|
|
| 15 |
|
| 16 |
COPY --from=builder /workspace/dist /usr/share/nginx/html
|
| 17 |
COPY --from=builder /workspace/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
| 11 |
|
| 12 |
# Stage 2: Serve with nginx
|
| 13 |
FROM nginx:alpine
|
| 14 |
+
ARG CACHE_BUST
|
| 15 |
+
RUN echo "Cache bust: $CACHE_BUST"
|
| 16 |
|
| 17 |
COPY --from=builder /workspace/dist /usr/share/nginx/html
|
| 18 |
COPY --from=builder /workspace/nginx.conf /etc/nginx/conf.d/default.conf
|