Update Dockerfile
Browse files- 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-01-
|
| 7 |
RUN git clone --depth 1 https://github.com/open-world-agents/owa-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-01-
|
| 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-01-16
|
| 7 |
RUN git clone --depth 1 https://github.com/open-world-agents/owa-dataset-visualizer /workspace
|
| 8 |
|
| 9 |
WORKDIR /workspace
|
|
|
|
| 11 |
|
| 12 |
# Stage 2: Serve with nginx
|
| 13 |
FROM nginx:alpine
|
| 14 |
+
ARG CACHE_BUST=2026-01-16
|
| 15 |
RUN echo "Cache bust: $CACHE_BUST"
|
| 16 |
|
| 17 |
COPY --from=builder /workspace/dist /usr/share/nginx/html
|