mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-01-10 05:15:55 +00:00
11 lines
174 B
Docker
11 lines
174 B
Docker
FROM alpine:3.10.2
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
git \
|
|
openssh-client \
|
|
ca-certificates
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|