MilkClouds commited on
Commit
c46d7df
·
verified ·
1 Parent(s): 86db0f9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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=2026-01-12
 
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