Files
jekyll-build-pages/Dockerfile
2023-07-12 00:15:22 +00:00

10 lines
283 B
Docker

FROM jekyll/minimal:latest
LABEL version="1.2.0"
LABEL description="Minimal Jekyll image with basic build tools."
LABEL maintainer="Vivien Richter <vivien-richter@outlook.de>"
# Entry point
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]