btcpayserver/BTCPayServer/DockerFile
2017-09-28 19:00:46 +09:00

9 lines
245 B
Plaintext

FROM microsoft/dotnet:2.0.0-sdk as builder
WORKDIR /app
COPY . .
RUN dotnet publish -c Release
FROM microsoft/aspnetcore:2.0.0
WORKDIR /app
COPY --from=builder "/app/bin/Release/netcoreapp2.0/publish" .
ENTRYPOINT ["dotnet", "BTCPayServer.dll"]