mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-02-02 08:16:00 +00:00
45f5817ce0
* change: base docker image from ubuntu:18.04 to alpine:3.10.2 * update: .hadolint.yaml to ignore DL3018
12 lines
211 B
Docker
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" ]
|