mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 00:08:40 +00:00
13 lines
251 B
Docker
13 lines
251 B
Docker
FROM alpine:3.15.4
|
|
RUN apk add --no-cache hugo=0.89.4-r2 git-2.34.8-r0
|
|
COPY "build.sh" "/build.sh"
|
|
|
|
RUN chmod +x /build.sh && \
|
|
mkdir /sentinels && \
|
|
chmod a+rwx /sentinels && \
|
|
addgroup -S hugo && adduser -S hugo -G hugo
|
|
|
|
USER hugo
|
|
|
|
ENTRYPOINT []
|