mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-01-19 13:43:46 +01:00
28 lines
710 B
Docker
28 lines
710 B
Docker
## This is a manifest image, will pull the image with the same arch as the host
|
|
FROM microsoft/dotnet:2.1.500-sdk AS builder
|
|
RUN dotnet --info
|
|
WORKDIR /source
|
|
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
|
|
# Cache some dependencies
|
|
RUN dotnet restore -r linux-arm
|
|
|
|
COPY BTCPayServer/. .
|
|
RUN dotnet publish -c Release -r linux-arm -o /app/ /p:ShowLinkerSizeComparison=true
|
|
|
|
|
|
## runtime
|
|
FROM microsoft/dotnet:2.1.6-aspnetcore-runtime-bionic-arm32v7 AS runtime
|
|
|
|
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
|
|
|
|
ENV LC_ALL en_US.UTF-8
|
|
ENV LANG en_US.UTF-8
|
|
|
|
WORKDIR /datadir
|
|
WORKDIR /app
|
|
ENV BTCPAY_DATADIR=/datadir
|
|
VOLUME /datadir
|
|
|
|
COPY --from=builder "/app" .
|
|
ENTRYPOINT ["dotnet", "BTCPayServer.dll"]
|