Skip to content

Commit e4ba6dd

Browse files
chore (build): upgrade runtime image
1 parent d9c404d commit e4ba6dd

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Dockerfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,12 @@ COPY go.mod go.sum ./
4141
# Install library dependencies
4242
RUN go mod download
4343

44-
ARG TARGETARCH
45-
4644
# Copy the entire project and build it
4745
# This layer is rebuilt when a file changes in the project directory
4846
COPY . .
49-
RUN CGO_ENABLED=0 GOOS=linux GOARCH=$TARGETARCH make
47+
RUN make
5048

51-
FROM debian:bookworm-slim AS final
49+
FROM debian:trixie-slim AS final
5250

5351
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
5452

0 commit comments

Comments
 (0)