File size: 156 Bytes
8fa29da
 
 
 
 
1
2
3
4
5
6
FROM nginx:alpine
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
COPY site/root /usr/share/nginx/html
EXPOSE 7860
CMD ["nginx", "-g", "daemon off;"]