Files
deadlyboringmath.us/Dockerfile
Tyler Clarke f1c9528581
Some checks failed
Build / Build-Docker-Image (push) Failing after 1m36s
set up deadlyboringmath.us
2025-02-18 11:32:20 -05:00

13 lines
291 B
Docker

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"]