Files
Spring/2019-11/spring-31/classwork2/solution/Dockerfile
T
2020-03-30 23:54:35 +03:00

5 lines
120 B
Docker

FROM nginx:1.11-alpine
COPY ../index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]