diff --git a/BTCPayServer.Tests/docker-compose.yml b/BTCPayServer.Tests/docker-compose.yml
index 00ed1e1d5..6ab28feb0 100644
--- a/BTCPayServer.Tests/docker-compose.yml
+++ b/BTCPayServer.Tests/docker-compose.yml
@@ -63,7 +63,7 @@ services:
nbxplorer:
- image: nicolasdorier/nbxplorer:1.0.2.31
+ image: nicolasdorier/nbxplorer:1.0.3.1
ports:
- "32838:32838"
expose:
@@ -105,6 +105,8 @@ services:
expose:
- "43782" # RPC
- "39388" # P2P
+ - "28332" # ZMQ
+ - "28333" # ZMQ
volumes:
- "bitcoin_datadir:/data"
diff --git a/BTCPayServer/BTCPayServer.csproj b/BTCPayServer/BTCPayServer.csproj
index 8ae5a184b..3d462ac0b 100644
--- a/BTCPayServer/BTCPayServer.csproj
+++ b/BTCPayServer/BTCPayServer.csproj
@@ -2,7 +2,7 @@
Exe
netcoreapp2.1
- 1.0.2.106
+ 1.0.2.107
NU1701,CA1816,CA1308,CA1810,CA2208
@@ -47,7 +47,7 @@
-
+
@@ -59,8 +59,7 @@
-
-
+
diff --git a/Dockerfile b/Dockerfile
index a64ac25af..e909132b7 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM microsoft/dotnet:2.1.300-sdk-alpine3.7 AS builder
+FROM microsoft/dotnet:2.1.402-sdk-alpine3.7 AS builder
WORKDIR /source
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer.csproj
# Cache some dependencies
@@ -6,7 +6,7 @@ RUN dotnet restore
COPY BTCPayServer/. .
RUN dotnet publish --output /app/ --configuration Release
-FROM microsoft/dotnet:2.1.0-aspnetcore-runtime-alpine3.7
+FROM microsoft/dotnet:2.1.4-aspnetcore-runtime-alpine3.7
ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT false
RUN apk add --no-cache icu-libs