Files
docker-hello-world/Dockerfile
2026-03-14 20:02:05 +08:00

10 lines
135 B
Docker

FROM busybox:1.37.0
WORKDIR /www
COPY index.html /www/index.html
EXPOSE 8080
CMD ["httpd", "-f", "-v", "-p", "8080", "-h", "/www"]