Skip to content

Commit

Permalink
Install libicu for multilingual support in C#
Browse files Browse the repository at this point in the history
  • Loading branch information
sweoggy committed Jun 18, 2024
1 parent 517e1bc commit a58502c
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build/docker/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,14 @@ RUN npm -v && yarn -v && bower -v
# Package manager installs are only supported on the x64 architecture. Other architectures, such as Arm, must install .NET by some other means such as with Snap, an installer script, or through a manual binary installation.
ENV DOTNET_ROOT /usr/lib/dotnet
ENV DOTNET_MAJOR 8.0
RUN curl -fsSLO https://dot.net/v1/dotnet-install.sh
RUN chmod u+x ./dotnet-install.sh
RUN ./dotnet-install.sh --channel $DOTNET_MAJOR --install-dir $DOTNET_ROOT
RUN rm ./dotnet-install.sh
ENV PATH $DOTNET_ROOT:$PATH
RUN apt -y update && apt -y install libicu72 && \
apt -y clean && rm -rf /var/lib/apt/lists/*
RUN curl -fsSLO https://dot.net/v1/dotnet-install.sh \
&& chmod u+x ./dotnet-install.sh \
&& ./dotnet-install.sh --channel $DOTNET_MAJOR --install-dir $DOTNET_ROOT \
&& rm ./dotnet-install.sh \
&& dotnet help

ENV GOLANG_VERSION 1.22
RUN apt -y update && apt -y upgrade && apt -y install \
Expand Down

0 comments on commit a58502c

Please sign in to comment.