Files
static-site-pipeline/docker/reconcile/Dockerfile
2023-09-10 21:21:51 +01:00

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 []