mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 05:33:31 +01:00
9 lines
245 B
Plaintext
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"] |