btcpayserver/Dockerfile

25 lines
588 B
Docker
Raw Normal View History

2018-05-31 11:41:03 +02:00
FROM microsoft/dotnet:2.1.300-sdk-alpine3.7 AS builder
2017-09-29 08:05:18 +02:00
WORKDIR /source
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
2017-09-29 08:05:18 +02:00
# Cache some dependencies
RUN dotnet restore
COPY BTCPayServer/. .
RUN dotnet publish --output /app/ --configuration Release
2017-09-29 08:05:18 +02:00
2018-05-31 11:41:03 +02:00
FROM microsoft/dotnet:2.1.0-aspnetcore-runtime-alpine3.7
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
RUN apk add --no-cache icu-libs
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
2017-09-29 08:05:18 +02:00
WORKDIR /app
RUN mkdir /datadir
ENV BTCPAY_DATADIR=/datadir
VOLUME /datadir
COPY --from=builder "/app" .
ENTRYPOINT ["dotnet", "BTCPayServer.dll"]