mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
0f222979a6
* Preparing final version of CircleCI docker building * Removing test job requirement for building Docker images We'll already monitor build before tagging, would be too many checks * Adding pushing of manifest for tag * Easy access to docker/circle config files for edit * Generalizing script with $DOCKERHUB_REPO variable
27 lines
624 B
Docker
27 lines
624 B
Docker
FROM microsoft/dotnet:2.1-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-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"]
|