actions-gh-pages/Dockerfile
Shohei Ueda 45f5817ce0
Release v2.1.0 (#14)
* change: base docker image from ubuntu:18.04 to alpine:3.10.2
* update: .hadolint.yaml to ignore DL3018
2019-09-06 00:31:34 +09:00

12 lines
211 B
Docker

FROM alpine:3.10.2
RUN apk add --no-cache \
bash \
git \
openssh-client \
ca-certificates && \
rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]