21 lines
583 B
Docker
21 lines
583 B
Docker
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"] |