From c9862e37e4b6662c1d995799fe93347b5d905ce2 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Sun, 13 Jan 2019 17:30:10 -0600 Subject: [PATCH] use LTS node for Web publish container --- src/FilterLists.Web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FilterLists.Web/Dockerfile b/src/FilterLists.Web/Dockerfile index 78edad468..07c878dd2 100644 --- a/src/FilterLists.Web/Dockerfile +++ b/src/FilterLists.Web/Dockerfile @@ -1,6 +1,6 @@ FROM microsoft/dotnet:2.2-sdk AS publish COPY FilterLists.Web /FilterLists.Web -RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - \ +RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs \ && dotnet publish FilterLists.Web/FilterLists.Web.csproj -c Release -o /out