MilkClouds commited on
Commit
1ac7d76
·
verified ·
1 Parent(s): 4f2d56a

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,8 +12,8 @@ RUN npm ci && npm run build
12
  # Stage 2: Serve with nginx
13
  FROM nginx:alpine
14
 
15
- COPY --from=builder /owa/projects/owa-dataset-visualizer/dist /usr/share/nginx/html
16
- COPY --from=builder /owa/projects/owa-dataset-visualizer/nginx.conf /etc/nginx/conf.d/default.conf
17
 
18
  # HuggingFace Spaces uses port 7860
19
  EXPOSE 7860
 
12
  # Stage 2: Serve with nginx
13
  FROM nginx:alpine
14
 
15
+ COPY --from=builder /workspace/dist /usr/share/nginx/html
16
+ COPY --from=builder /workspace/nginx.conf /etc/nginx/conf.d/default.conf
17
 
18
  # HuggingFace Spaces uses port 7860
19
  EXPOSE 7860