Files
rsync-deploy-action/Dockerfile
Roy Nilsson 0117c272fa Change from DockerHub to AWS public ECR
DockerHub now has a harsh limit on public pulls, thus changing the
container registry.
2025-10-22 01:49:45 +02:00

11 lines
175 B
Docker

FROM public.ecr.aws/docker/library/alpine:3.22
RUN apk add --no-cache --upgrade \
openssh \
rsync
ADD deploy.sh /
RUN chmod +x /deploy.sh
ENTRYPOINT ["/deploy.sh"]