btcpayserver/amd64.Dockerfile

32 lines
1.2 KiB
Text
Raw Normal View History

2019-03-20 12:34:47 +09:00
FROM mcr.microsoft.com/dotnet/core/sdk:2.1.505-alpine3.7 AS builder
2017-09-29 15:05:18 +09:00
WORKDIR /source
COPY Build/Common.csproj Build/Common.csproj
2019-06-02 17:06:00 +09:00
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj
COPY BTCPayServer.Common/BTCPayServer.Common.csproj BTCPayServer.Common/BTCPayServer.Common.csproj
COPY BTCPayServer.Rating/BTCPayServer.Rating.csproj BTCPayServer.Rating/BTCPayServer.Rating.csproj
2019-09-04 17:37:40 +09:00
COPY BTCPayServer.Data/BTCPayServer.Data.csproj BTCPayServer.Data/BTCPayServer.Data.csproj
2019-06-02 17:06:00 +09:00
RUN cd BTCPayServer && dotnet restore
COPY BTCPayServer.Common/. BTCPayServer.Common/.
COPY BTCPayServer.Rating/. BTCPayServer.Rating/.
2019-09-04 17:37:40 +09:00
COPY BTCPayServer.Data/. BTCPayServer.Data/.
COPY BTCPayServer/. BTCPayServer/.
COPY Build/Version.csproj Build/Version.csproj
2019-06-02 17:06:00 +09:00
RUN cd BTCPayServer && dotnet publish --output /app/ --configuration Release
2017-09-29 15:05:18 +09:00
2019-03-20 12:34:47 +09:00
FROM mcr.microsoft.com/dotnet/core/aspnet:2.1.9-alpine3.7
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
RUN apk add --no-cache icu-libs openssh-keygen
ENV LC_ALL en_US.UTF-8
ENV LANG en_US.UTF-8
2017-09-29 15:05:18 +09:00
WORKDIR /app
RUN mkdir /datadir
ENV BTCPAY_DATADIR=/datadir
VOLUME /datadir
COPY --from=builder "/app" .
2019-02-27 21:58:28 +09:00
COPY docker-entrypoint.sh docker-entrypoint.sh
2019-02-27 21:56:36 +09:00
ENTRYPOINT ["/app/docker-entrypoint.sh"]