We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9c404d commit e4ba6ddCopy full SHA for e4ba6dd
1 file changed
Dockerfile
@@ -41,14 +41,12 @@ COPY go.mod go.sum ./
41
# Install library dependencies
42
RUN go mod download
43
44
-ARG TARGETARCH
45
-
46
# Copy the entire project and build it
47
# This layer is rebuilt when a file changes in the project directory
48
COPY . .
49
-RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH make
+RUN make
50
51
-FROM debian:bookworm-slim AS final
+FROM debian:trixie-slim AS final
52
53
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
54
0 commit comments