Files
Spring/2022-02/spring-35/classwork2/solution/Dockerfile
T
2022-07-09 13:50: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;"]