Comment on Shrinking my static siteComments−alpb6yIf you're using multiple steps anyway, there's no need to use nginx base on every step. FROM nginx:1.17.10-alpine as npmpackages RUN apk add --update nodejs npm Just do: FROM node:10 RUN npm [...]−herohampOP6ythat is true, ill switch to that when i get around to it
Comments
If you're using multiple steps anyway, there's no need to use nginx base on every step.
Just do:that is true, ill switch to that when i get around to it