mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 16:28:41 +00:00
10 lines
139 B
Docker
10 lines
139 B
Docker
FROM alpine:3.13.5
|
|
|
|
COPY "build.sh" "/build.sh"
|
|
|
|
RUN chmod +x /build.sh && \
|
|
mkdir /sentinels && \
|
|
chmod a+rwx /sentinels
|
|
|
|
ENTRYPOINT []
|