remove explicit nodejs apk (installed as dep of nodejs-npm)

This commit is contained in:
Collin M. Barrett 2019-01-14 06:29:52 -06:00
parent fbf0ca5d31
commit 7aa074aedb

View file

@ -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