btcpayserver/Dockerfile.linuxarm32v7
2018-11-23 13:58:21 +09:00

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"]