File size: 155 Bytes
cafd3df
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM nginx:alpine

COPY web /usr/share/nginx/html

RUN sed -i 's/80/7860/g' /etc/nginx/conf.d/default.conf

EXPOSE 7860

CMD ["nginx", "-g", "daemon off;"]