pierre-martin.fr/Dockerfile
2024-10-15 23:08:30 +02:00

13 lines
265 B
Docker

# See https://lipanski.com/posts/smallest-docker-image-static-website
FROM busybox:1.36
RUN adduser -D static
USER static
WORKDIR /home/static
COPY favicon.ico .
COPY index.html .
# Run BusyBox httpd
EXPOSE 3000
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000"]