mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-01-25 04:20:49 +00:00
bdedb4ed2b
* feat: ignore .git and .github Close #57 * feat: update alpine to 3.11.0 cf. #64
11 lines
174 B
Docker
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" ]
|