Files
Spring/2021-05/spring-32/classwork2/solution/Dockerfile
T
Yuriy Dvorzhetskiy aafc2797eb 2021-05 - 32
2021-10-09 00:29:43 +06:00

5 lines
117 B
Docker

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