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

9 lines
178 B
Plaintext

FROM nginx:stable-alpine3.20-slim
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;"]