We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6acedb7 commit ebf9046Copy full SHA for ebf9046
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM golang:1.25-alpine AS builder
+FROM public.ecr.aws/docker/library/golang:1.25-alpine AS builder
2
3
# Install git and ca-certificates
4
RUN apk --no-cache add ca-certificates git tzdata
@@ -18,7 +18,7 @@ COPY . .
18
# Build the application
19
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w" -o /pangolin-cli
20
21
-FROM alpine:3.23 AS runner
+FROM public.ecr.aws/docker/library/alpine:3.23 AS runner
22
23
RUN apk --no-cache add ca-certificates tzdata iputils
24
0 commit comments