We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f20f8 commit 0d1c3abCopy full SHA for 0d1c3ab
1 file changed
docker/serverless.dockerfile
@@ -3,7 +3,8 @@ FROM golang:1.25-alpine AS builder
3
ARG VERSION=unknown
4
5
# Install ca-certificates and timezone data for final stage
6
-RUN apk add --no-cache ca-certificates tzdata
+RUN apk add --no-cache ca-certificates tzdata && \
7
+ apk add --upgrade --force-refresh busybox
8
9
# Set working directory
10
WORKDIR /app
@@ -27,7 +28,8 @@ RUN CGO_ENABLED=0 go build \
27
28
FROM alpine:3.20
29
30
# Install ca-certificates for SSL/TLS
31
32
33
34
# Create non-root user with specific UID/GID for consistency
35
RUN addgroup -g 1000 appgroup && \
0 commit comments