mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2026-01-26 17:34:27 +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"] |