This commit is contained in:
2026-03-14 20:02:05 +08:00
commit 2c0bf6b36a
5 changed files with 75 additions and 0 deletions

9
Dockerfile Normal file
View File

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