mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 16:28:41 +00:00
10 lines
171 B
Docker
10 lines
171 B
Docker
FROM hadolint/hadolint:v2.10.0-beta-alpine
|
|
COPY "build.sh" "/build.sh"
|
|
|
|
RUN chmod +x /build.sh && \
|
|
addgroup -S hugo && adduser -S hugo -G hugo
|
|
|
|
USER hugo
|
|
|
|
ENTRYPOINT []
|