Files
test-app/Dockerfile
2026-03-19 18:55:28 +09:00

4 lines
111 B
Docker

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