Files
louisas-website/Dockerfile
bdoerfchen 994456863f
All checks were successful
build-image / brs-api (push) Successful in 28s
feat: add files
2025-07-16 18:57:34 +02:00

14 lines
263 B
Docker

FROM busybox:1.36
# Create a non-root user to own the files and run our server
RUN adduser -D web
USER web
WORKDIR /home/web
# Copy the static website
COPY src/* .
# Run BusyBox httpd
EXPOSE 8080
ENTRYPOINT [ "busybox", "httpd", "-f", "-v" ]
CMD ["-p", "8080"]