diff options
| author | Max Resnick <max@ofmax.li> | 2025-07-03 22:43:20 -0700 |
|---|---|---|
| committer | Max Resnick <max@ofmax.li> | 2025-07-03 22:52:27 -0700 |
| commit | 29c5d4f6768a3eabefd963cd3bc3e81ebfffd056 (patch) | |
| tree | 919eaf248ed52ed31ac504a1f7c37b22f0400d95 /src/rclone/Dockerfile | |
| parent | 1e8bb139121f22b1e7672e0f3ec54953eb3a7885 (diff) | |
| download | grumpy-containers-29c5d4f6768a3eabefd963cd3bc3e81ebfffd056.tar.gz | |
feat: update the docker registry
Diffstat (limited to '')
| -rw-r--r-- | src/rclone/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rclone/Dockerfile b/src/rclone/Dockerfile index c703759..4be6126 100644 --- a/src/rclone/Dockerfile +++ b/src/rclone/Dockerfile @@ -1,10 +1,10 @@ ARG BASE_VER=latest -FROM public.ecr.aws/s0f9o2k5/base:${BASE_VER} AS build +FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER} AS build SHELL ["/bin/bash", "-c"] RUN install_deb curl ca-certificates unzip \ && curl -O https://downloads.rclone.org/rclone-current-linux-amd64.zip \ && unzip rclone-current-linux-amd64.zip \ && cp rclone-*-linux-amd64/rclone /usr/local/bin/rclone ARG BASE_VER=latest -FROM public.ecr.aws/s0f9o2k5/base:${BASE_VER} +FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER} COPY --from=build /usr/local/bin/rclone /usr/local/bin/rclone |