5 lines
155 B
Docker
5 lines
155 B
Docker
FROM alpine
|
|
RUN apk update && apk add ca-certificates openssh-client sshpass rsync gzip libc6-compat && rm -r /var/cache/
|
|
ADD mark2web /
|
|
CMD ["/mark2web"]
|