FROM alpine:3.15 RUN apk add --no-cache bash VOLUME /out COPY build.sh /build.sh RUN chmod +x /build.sh ENTRYPOINT ["/bin/bash", "/build.sh"]