custom1/Dockerfile
2025-05-16 13:52:26 +00:00

5 lines
100 B
Docker

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