Files
jekyll-build-pages/Dockerfile
2023-07-11 23:44:53 +00:00

19 lines
386 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>"
# Requirements
USER root
RUN apk --no-cache add build-base
EXPOSE 4000/tcp
# Entry point
COPY entrypoint.sh /entrypoint.sh
COPY ./ /
RUN chmod +x /entrypoint.sh
RUN chmod +w /
ENTRYPOINT ["/entrypoint.sh"]