Files
clarkeis.com/Dockerfile
Tyler Clarke 5e194a532b
All checks were successful
ClarkeIS Build / Build-Docker-Image (push) Successful in 26s
setup ci/cd
2025-02-05 21:16:27 -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"]