mlabonne commited on
Commit
33b9d29
·
verified ·
1 Parent(s): 5a8c03a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM nginx:alpine
2
+ COPY . /usr/share/nginx/html
3
+ EXPOSE 7860
4
+ CMD ["nginx", "-g", "daemon off;"]