We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc56ee commit aad20fdCopy full SHA for aad20fd
api/Dockerfile
@@ -12,12 +12,12 @@ COPY cmd ./cmd
12
RUN CGO_ENABLED=0 GOOS=linux go build -o /deploygrid ./cmd/main
13
14
# Deploy the application binary into a lean image
15
-FROM gcr.io/distroless/base-debian11 AS build-release-stage
+FROM debian:bookworm AS build-release-stage
16
+
17
+RUN apt-get update && apt-get install -y awscli && rm -rf /var/cache/apt/archives /var/lib/apt/lists/*
18
19
WORKDIR /
20
21
COPY --from=build-stage /deploygrid /usr/bin/deploygrid
22
-USER nonroot:nonroot
-
23
ENTRYPOINT ["/usr/bin/deploygrid"]
0 commit comments