ssh-scp-action/Dockerfile

21 lines
583 B
Docker
Raw Permalink Normal View History

2019-11-19 13:34:33 +08:00
FROM alpine
LABEL "maintainer"="maddox <a.najafizadeh@najafizadeh.com>"
LABEL "repository"="https://github.com/alinz/actions"
LABEL "version"="1.0.0"
LABEL "com.github.actions.name"="test"
LABEL "com.github.actions.description"="Run test"
LABEL "com.github.actions.icon"="server"
LABEL "com.github.actions.color"="orange"
RUN apk update && \
apk add ca-certificates && \
apk add --no-cache openssh-client && \
apk add --no-cache openssl && \
apk add --no-cache --upgrade bash && \
rm -rf /var/cache/apk/*
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]