1
0
This commit is contained in:
NicolasDorier
2017-09-15 01:21:20 +09:00
commit 814eb6bd59
3 changed files with 44 additions and 0 deletions

8
DockerFile Normal file
View File

@@ -0,0 +1,8 @@
FROM microsoft/dotnet:2.0.0-sdk
RUN git clone https://github.com/btcpayserver/btcpayserver
RUN cd btcpayserver && dotnet restore && cd BTCPayServer && dotnet build -c Debug
EXPOSE 23001
WORKDIR /btcpayserver/BTCPayServer
ENTRYPOINT ["dotnet", "bin/Debug/netcoreapp2.0/BTCPayServer.dll"]
CMD ["-testnet", "-explorercookiefile=/.cookie", "-explorerurl=https://nbxplorer-testnet-public.azurewebsites.net/", "-bind=0.0.0.0"]