Files
Srtools-Migration/.history/Dockerfile_20260317181258
2026-03-17 18:15:09 +07:00

9 lines
169 B
Plaintext

FROM nginx:stable-alpine
COPY index.html /usr/share/nginx/html/index.html
RUN chmod 644 /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]