btcpayserver/Dockerfile.linuxarm32v7
2018-11-23 11:23:27 +09:00

27 lines
645 B
Docker

FROM microsoft/dotnet:2.1.500-sdk-bionic-arm32v7 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"]