actions-gh-pages/Dockerfile
Shohei Ueda bdedb4ed2b
feat: ignore .git and .github (#63)
* feat: ignore .git and .github

Close #57

* feat: update alpine to 3.11.0

cf. #64
2019-12-24 15:02:00 +09:00

11 lines
174 B
Docker

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