dakaca commited on
Commit
94e7bd4
·
1 Parent(s): d674794

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
- FROM scratch
2
 
3
- COPY myapp /myapp
4
 
5
  EXPOSE 7860
6
 
7
- CMD ["/myapp"]
 
1
+ FROM nginx
2
 
3
+ COPY index.html /usr/share/nginx/html
4
 
5
  EXPOSE 7860
6
 
7
+ CMD ["nginx", "-g", "daemon off;"]