lastdefiance20 commited on
Commit
7f0e8eb
·
verified ·
1 Parent(s): edf968d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM node:20-alpine AS builder
3
 
4
  RUN apk add --no-cache git
5
 
6
- ARG CACHE_BUST=2026-04-07
7
  RUN git clone --depth 1 https://github.com/cloneisyou/dataset-visualizer /workspace
8
 
9
  WORKDIR /workspace
@@ -11,7 +11,7 @@ RUN npm ci && npm run build
11
 
12
  # Stage 2: Serve with nginx
13
  FROM nginx:alpine
14
- ARG CACHE_BUST=2026-04-07
15
  RUN echo "Cache bust: $CACHE_BUST"
16
 
17
  COPY --from=builder /workspace/dist /usr/share/nginx/html
 
3
 
4
  RUN apk add --no-cache git
5
 
6
+ ARG CACHE_BUST=2026-04-08
7
  RUN git clone --depth 1 https://github.com/cloneisyou/dataset-visualizer /workspace
8
 
9
  WORKDIR /workspace
 
11
 
12
  # Stage 2: Serve with nginx
13
  FROM nginx:alpine
14
+ ARG CACHE_BUST=2026-04-08
15
  RUN echo "Cache bust: $CACHE_BUST"
16
 
17
  COPY --from=builder /workspace/dist /usr/share/nginx/html