Files
Spring/2021-08/spring-32/classwork2/solution/Dockerfile
T
Yuriy Dvorzhetskiy b416200b67 2021-08 - 32
2022-01-12 22:59:01 +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;"]