Files
2025-06-14 21:19:53 +04: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;"]