darshvit20 commited on
Commit
9ffb3bc
Β·
1 Parent(s): 9201d5f

Fix COPY paths in Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -56,14 +56,14 @@ COPY services/api/main.py /app/api/main.py
56
  COPY --from=frontend-builder /app/frontend/dist /usr/share/nginx/html
57
 
58
  # ── Nginx config ───────────────────────────────────────────────────────────
59
- COPY hf-space/nginx.conf /etc/nginx/conf.d/default.conf
60
  RUN rm -f /etc/nginx/sites-enabled/default
61
 
62
  # ── Supervisord config ─────────────────────────────────────────────────────
63
- COPY hf-space/supervisord.conf /etc/supervisor/conf.d/supervisord.conf
64
 
65
  # ── Startup script ─────────────────────────────────────────────────────────
66
- COPY hf-space/start.sh /start.sh
67
  RUN chmod +x /start.sh
68
 
69
  # ── Create required directories ────────────────────────────────────────────
 
56
  COPY --from=frontend-builder /app/frontend/dist /usr/share/nginx/html
57
 
58
  # ── Nginx config ───────────────────────────────────────────────────────────
59
+ COPY nginx.conf /etc/nginx/conf.d/default.conf
60
  RUN rm -f /etc/nginx/sites-enabled/default
61
 
62
  # ── Supervisord config ─────────────────────────────────────────────────────
63
+ COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
64
 
65
  # ── Startup script ─────────────────────────────────────────────────────────
66
+ COPY start.sh /start.sh
67
  RUN chmod +x /start.sh
68
 
69
  # ── Create required directories ────────────────────────────────────────────