Skip to content

Commit

Permalink
Enable globalization (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikSchierboom authored Sep 10, 2021
1 parent 72d4e18 commit 39900b4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ RUN dotnet publish -r linux-musl-x64 -c Release -o /opt/test-runner --no-restore

# Build runtime image
FROM mcr.microsoft.com/dotnet/runtime-deps:5.0.5-alpine3.13-amd64 AS runtime

# Enable globalization as some exercises use it
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false
RUN apk add --no-cache icu-libs

WORKDIR /opt/test-runner

COPY --from=build /opt/test-runner/ .
Expand Down

0 comments on commit 39900b4

Please sign in to comment.