ssh-scp-deploy/Dockerfile
2020-06-05 18:29:58 -03:00

9 lines
172 B
Docker

FROM alpine:3.10
RUN apk upgrade --update \
apk add --no-cache openssh \
&& rm -rf /tmp/* /usr/share/man /var/cache/apk/*
COPY . /
ENTRYPOINT ["/entrypoint.sh"]