Files
Spring/2021-03/spring-26/classwork2/solution/Dockerfile
T
2021-07-07 20:08:35 +06: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;"]