Files
Spring/2020-08/spring-31/classwork2/solution/Dockerfile
T
2020-12-18 23:05:40 +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;"]