File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ FROM base AS builder
1010
1111# Setup the required build tooling
1212RUN 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
5454ENV PATH=/opt/venv/bin:$PATH
5555ENV GRPC_POLL_STRATEGY=poll
5656
57- # Install jq and curl commands
57+ # Install jq and curl commands and ICU runtime library
5858RUN 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
You can’t perform that action at this time.
0 commit comments