8 lines
189 B
Docker
8 lines
189 B
Docker
# This image is cached on the Github Actions VM, so it drastically reduces build time
|
|
FROM jekyll/builder:latest
|
|
USER root
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|