Talha812 commited on
Commit
cafd3df
·
verified ·
1 Parent(s): 52b5768

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM nginx:alpine
2
+
3
+ COPY web /usr/share/nginx/html
4
+
5
+ RUN sed -i 's/80/7860/g' /etc/nginx/conf.d/default.conf
6
+
7
+ EXPOSE 7860
8
+
9
+ CMD ["nginx", "-g", "daemon off;"]