From 7aa074aedbeca57228950b9226adee16b6f264ff Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Mon, 14 Jan 2019 06:29:52 -0600 Subject: [PATCH] remove explicit nodejs apk (installed as dep of nodejs-npm) --- 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 d4a1bf03e..ddc121457 100644 --- a/src/FilterLists.Web/Dockerfile +++ b/src/FilterLists.Web/Dockerfile @@ -1,6 +1,6 @@ FROM microsoft/dotnet:2.2-sdk-alpine AS publish COPY FilterLists.Web /FilterLists.Web -RUN apk add --update nodejs nodejs-npm \ +RUN apk add --update nodejs-npm \ && dotnet publish FilterLists.Web/FilterLists.Web.csproj -c Release -o /out FROM microsoft/dotnet:2.2-aspnetcore-runtime-alpine AS final