mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
Add globalization to the alpine package
This commit is contained in:
parent
6bd5976d90
commit
9dddfb65f0
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue