actions-gh-pages/Dockerfile

11 lines
174 B
Docker

FROM alpine:3.10.3
RUN apk add --no-cache \
bash \
git \
openssh-client \
ca-certificates
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]