Files
2024-06-14 23:57:15 +03: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;"]