Skip to content

Commit 02a9836

Browse files
committed
Fix
1 parent 41f6e97 commit 02a9836

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -ldflags="-w -s
1111

1212
FROM --platform=${TARGETPLATFORM:-linux/amd64} debian:bookworm-slim
1313
COPY --from=builder /palog /palog
14-
RUN apk add --no-cache icu
14+
RUN apt-get update && \
15+
apt-get install -y icu-devtools && \
16+
rm -rf /var/lib/apt/lists/*
1517

1618
ENTRYPOINT ["/palog"]

0 commit comments

Comments
 (0)