initial
All checks were successful
Swaous.Asuscomm Build / Build-Docker-Image (push) Successful in 25s

This commit is contained in:
Lazy Hippopotamus
2025-02-05 16:35:29 -05:00
commit c7de75fcb9
4 changed files with 125 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM busybox:1.35
# Create a non-root user to own the files and run our server
RUN mkdir /static
WORKDIR /static
# Copy the static website
# Use the .dockerignore file to control what ends up inside the image!
COPY . .
# Run BusyBox httpd
CMD ["busybox", "httpd", "-f", "-v", "-p", "80"]