DockerHub now has a harsh limit on public pulls, thus changing the container registry.
11 lines
175 B
Docker
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"]
|