2018-05-08 10:57:53 +02:00
|
|
|
FROM microsoft/dotnet:2.1.300-rc1-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
|
2017-09-29 08:05:18 +02:00
|
|
|
# Cache some dependencies
|
2017-10-02 17:41:03 +02:00
|
|
|
RUN dotnet restore
|
|
|
|
COPY BTCPayServer/. .
|
|
|
|
RUN dotnet publish --output /app/ --configuration Release
|
2017-09-29 08:05:18 +02:00
|
|
|
|
2018-05-08 10:57:53 +02:00
|
|
|
FROM microsoft/dotnet:2.1.0-rc1-aspnetcore-runtime-alpine3.7
|
2017-09-29 08:05:18 +02:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN mkdir /datadir
|
|
|
|
ENV BTCPAY_DATADIR=/datadir
|
|
|
|
VOLUME /datadir
|
|
|
|
|
|
|
|
COPY --from=builder "/app" .
|
2017-12-16 17:04:20 +01:00
|
|
|
ENTRYPOINT ["dotnet", "BTCPayServer.dll"]
|