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 41f6e97 commit 02a9836Copy full SHA for 02a9836
Dockerfile
@@ -11,6 +11,8 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-w -s
11
12
FROM --platform=${TARGETPLATFORM:-linux/amd64} debian:bookworm-slim
13
COPY --from=builder /palog /palog
14
-RUN apk add --no-cache icu
+RUN apt-get update && \
15
+ apt-get install -y icu-devtools && \
16
+ rm -rf /var/lib/apt/lists/*
17
18
ENTRYPOINT ["/palog"]
0 commit comments