Peiyan commited on
Commit
8e7c163
·
verified ·
1 Parent(s): 755e336

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -2
Dockerfile CHANGED
@@ -32,8 +32,7 @@ RUN chmod -R 755 /var/log/nginx && \
32
 
33
  # Step #3: configure nginx and flask
34
  COPY --from=build-step /app/frontend/build /usr/share/nginx/html
35
- COPY deployment/docker/nginx.conf /etc/nginx/nginx.conf # Correct path for nginx.conf
36
- COPY deployment/docker/site.conf /etc/nginx/sites-enabled/default # Site-specific configuration
37
  COPY deployment/docker/serve.sh .
38
  RUN chmod a+x ./serve.sh
39
 
 
32
 
33
  # Step #3: configure nginx and flask
34
  COPY --from=build-step /app/frontend/build /usr/share/nginx/html
35
+ COPY deployment/docker/nginx.conf /etc/nginx/nginx.conf # Copy main nginx.conf
 
36
  COPY deployment/docker/serve.sh .
37
  RUN chmod a+x ./serve.sh
38