mirror of
https://github.com/Burnett01/rsync-deployments.git
synced 2025-02-23 02:05:41 +01:00
8 lines
202 B
Text
8 lines
202 B
Text
|
FROM alpine:3.11
|
||
|
MAINTAINER Dr Internet <internet@limelightgaming.net>
|
||
|
|
||
|
RUN apk update
|
||
|
RUN apk add --no-cache rsync openssh-client ca-certificates
|
||
|
RUN update-ca-certificates
|
||
|
RUN rm -rf /var/cache/apk/*
|