2018-03-19 00:44:12 +09:00
|
|
|
FROM microsoft/aspnetcore-build:2.0.6-2.1.101-stretch AS builder
|
2017-09-29 15:05:18 +09:00
|
|
|
WORKDIR /source
|
2017-10-03 00:41:03 +09:00
|
|
|
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
|
2017-09-29 15:05:18 +09:00
|
|
|
# Cache some dependencies
|
2017-10-03 00:41:03 +09:00
|
|
|
RUN dotnet restore
|
|
|
|
COPY BTCPayServer/. .
|
|
|
|
RUN dotnet publish --output /app/ --configuration Release
|
2017-09-29 15:05:18 +09:00
|
|
|
|
2018-03-19 00:44:12 +09:00
|
|
|
FROM microsoft/aspnetcore:2.0.6-stretch
|
2017-09-29 15:05:18 +09:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN mkdir /datadir
|
|
|
|
ENV BTCPAY_DATADIR=/datadir
|
|
|
|
VOLUME /datadir
|
|
|
|
|
|
|
|
COPY --from=builder "/app" .
|
2017-12-17 01:04:20 +09:00
|
|
|
ENTRYPOINT ["dotnet", "BTCPayServer.dll"]
|