Files
test-app/Dockerfile

4 lines
111 B
Docker
Raw Permalink Normal View History

2026-03-19 18:55:28 +09:00
FROM nginx:alpine
COPY index.html /usr/share/nginx/html/index.html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]