Skip to content

Commit

Permalink
fix: migrate back to dockerhub since ecr has issues with having all l…
Browse files Browse the repository at this point in the history
…ayers

Signed-off-by: Devin Buhl <devin@buhl.casa>
  • Loading branch information
onedr0p committed Dec 9, 2023
1 parent bf5aa11 commit de12134
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions apps/alpine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM public.ecr.aws/docker/library/alpine:3.19 as builder
FROM docker.io/library/alpine:3.19 as builder
ARG VERSION
ARG TARGETOS
ARG TARGETARCH
Expand All @@ -18,7 +18,7 @@ RUN \
&& go install -ldflags="-s -w" github.com/drone/envsubst/cmd/envsubst@latest \
&& upx /go/bin/envsubst

FROM public.ecr.aws/docker/library/alpine:${VERSION}
FROM docker.io/library/alpine:${VERSION}
ARG VERSION
ARG CHANNEL
ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion apps/cni-plugins/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/alpine:3.19.0
FROM docker.io/library/alpine:3.19.0
USER root
ARG TARGETARCH
ARG VERSION
Expand Down
4 changes: 2 additions & 2 deletions apps/par2cmdline-turbo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/alpine:3.19 as build
FROM docker.io/library/alpine:3.19 as build
ARG TARGETARCH
ARG VERSION
WORKDIR /tmp
Expand All @@ -19,7 +19,7 @@ RUN \
&& make \
&& make install

FROM public.ecr.aws/docker/library/alpine:3.19.0
FROM docker.io/library/alpine:3.19.0
COPY --from=build /usr/local/bin/par2 /usr/local/bin/par2
RUN /usr/local/bin/par2 --help
CMD ["/usr/local/bin/par2"]
4 changes: 2 additions & 2 deletions apps/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM public.ecr.aws/docker/library/alpine:3.19 as builder
FROM docker.io/library/alpine:3.19 as builder
ARG VERSION
ARG TARGETOS
ARG TARGETARCH
Expand All @@ -18,7 +18,7 @@ RUN \
&& go install -ldflags="-s -w" github.com/drone/envsubst/cmd/envsubst@latest \
&& upx /go/bin/envsubst

FROM public.ecr.aws/docker/library/ubuntu:${VERSION}
FROM docker.io/library/ubuntu:${VERSION}
ARG VERSION
ARG CHANNEL
ARG TARGETPLATFORM
Expand Down
4 changes: 2 additions & 2 deletions apps/udp-broadcast-relay-redux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/alpine:3.19 AS builder
FROM docker.io/library/alpine:3.19 AS builder
ARG VERSION

WORKDIR /build
Expand All @@ -17,7 +17,7 @@ RUN \
fi \
&& gcc -g main.c -o udp-broadcast-relay-redux

FROM public.ecr.aws/docker/library/alpine:3.19.0
FROM docker.io/library/alpine:3.19.0
WORKDIR /app
RUN \
apk add --no-cache \
Expand Down
4 changes: 2 additions & 2 deletions apps/volsync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG VERSION
FROM public.ecr.aws/docker/library/alpine:3.19 as builder
FROM docker.io/library/alpine:3.19 as builder
ARG VERSION
ARG TARGETOS
ARG TARGETARCH
Expand All @@ -21,7 +21,7 @@ RUN \
FROM docker.io/rclone/rclone:1.65.0 as rclone
FROM docker.io/restic/restic:0.16.2 as restic

FROM public.ecr.aws/docker/library/alpine:3.19.0
FROM docker.io/library/alpine:3.19.0
ARG TARGETPLATFORM
ARG VERSION
ARG CHANNEL
Expand Down

0 comments on commit de12134

Please sign in to comment.