2018-11-16 16:13:22 +01:00
|
|
|
FROM microsoft/dotnet:2.1.500-sdk-alpine3.7 AS builder
|
2017-09-29 08:05:18 +02:00
|
|
|
WORKDIR /source
|
2017-10-02 17:41:03 +02:00
|
|
|
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
|
|
|
|
RUN dotnet restore
|
|
|
|
COPY BTCPayServer/. .
|
|
|
|
RUN dotnet publish --output /app/ --configuration Release
|
2017-09-29 08:05:18 +02:00
|
|
|
|
2018-11-16 16:13:22 +01:00
|
|
|
FROM microsoft/dotnet:2.1.6-aspnetcore-runtime-alpine3.7
|
2018-05-09 07:09:41 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2017-09-29 08:05:18 +02:00
|
|
|
WORKDIR /app
|
2018-07-24 12:04:48 +02:00
|
|
|
# This should be removed soon https://github.com/dotnet/corefx/issues/30003
|
|
|
|
RUN apk add --no-cache curl
|
2017-09-29 08:05:18 +02:00
|
|
|
RUN mkdir /datadir
|
|
|
|
ENV BTCPAY_DATADIR=/datadir
|
|
|
|
VOLUME /datadir
|
|
|
|
|
|
|
|
COPY --from=builder "/app" .
|
2019-02-27 13:56:36 +01:00
|
|
|
ENTRYPOINT ["/app/docker-entrypoint.sh"]
|