Add globalization to the alpine package

This commit is contained in:
nicolas.dorier 2018-05-09 14:09:41 +09:00
parent 6bd5976d90
commit 9dddfb65f0

View file

@ -7,6 +7,13 @@ COPY BTCPayServer/. .
RUN dotnet publish --output /app/ --configuration Release
FROM microsoft/dotnet:2.1.0-rc1-aspnetcore-runtime-alpine3.7
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
RUN apk add --no-cache icu-libs
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
WORKDIR /app
RUN mkdir /datadir