File size: 570 Bytes
35e2bc3
 
9e831e6
35e2bc3
9e831e6
0886c86
4f2d56a
8dbde7a
4f2d56a
35e2bc3
 
 
 
0886c86
c46d7df
9e831e6
1ac7d76
 
fc9dd89
35e2bc3
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Stage 1: Build
FROM node:20-alpine AS builder

RUN apk add --no-cache git

ARG CACHE_BUST=2026-01-16
RUN git clone --depth 1 https://github.com/open-world-agents/owa-dataset-visualizer /workspace

WORKDIR /workspace
RUN npm ci && npm run build

# Stage 2: Serve with nginx
FROM nginx:alpine
ARG CACHE_BUST=2026-01-16
RUN echo "Cache bust: $CACHE_BUST"

COPY --from=builder /workspace/dist /usr/share/nginx/html
COPY --from=builder /workspace/nginx.conf /etc/nginx/conf.d/default.conf

# HuggingFace Spaces uses port 7860
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]