Skip to content

Commit

Permalink
fix: missing localization data in containers (#77)
Browse files Browse the repository at this point in the history
Closes: #76
  • Loading branch information
MaSch0212 authored Jun 18, 2024
1 parent 2d8f992 commit 5339b4d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine
ARG BUILDTIME=Unknown

# Install the ICU package
RUN apk update \
&& apk add --no-cache icu-libs
RUN apk update
RUN apk add --no-cache icu-libs
RUN apk add --no-cache icu-data-full

WORKDIR /app
EXPOSE 80
Expand Down
5 changes: 3 additions & 2 deletions IntegrationTests.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine
ARG CONFIGURATION=Release

# Install the ICU package
RUN apk update \
&& apk add --no-cache icu-libs
RUN apk update
RUN apk add --no-cache icu-libs
RUN apk add --no-cache icu-data-full

WORKDIR /app
EXPOSE 80
Expand Down

0 comments on commit 5339b4d

Please sign in to comment.