Skip to content

Commit 95d6011

Browse files
committed
chore: Fixes Dockerfile
1 parent 571c587 commit 95d6011

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FROM base AS builder
1010

1111
# Setup the required build tooling
1212
RUN apt-get update \
13-
&& apt-get install -y --no-install-recommends build-essential gcc \
13+
&& apt-get install -y --no-install-recommends build-essential gcc libicu-dev pkg-config \
1414
&& apt-get clean \
1515
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
1616

@@ -54,9 +54,9 @@ COPY --from=builder /opt/venv /opt/venv
5454
ENV PATH=/opt/venv/bin:$PATH
5555
ENV GRPC_POLL_STRATEGY=poll
5656

57-
# Install jq and curl commands
57+
# Install jq and curl commands and ICU runtime library
5858
RUN apt-get update \
59-
&& apt-get install -y --no-install-recommends jq curl \
59+
&& apt-get install -y --no-install-recommends jq curl libicu72 \
6060
&& apt-get clean \
6161
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
6262

0 commit comments

Comments
 (0)