From 78d2fb9ce16a32ddf81dd3f01db94efac9cd2d69 Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 4 Jan 2021 10:44:06 -0500 Subject: [PATCH] Removing node-prune. --- Dockerfile | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ac9af0..4104d35 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ -FROM node:14 as builder -RUN apt-get update && apt-get install -y curl yarn bash - -RUN curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /usr/local/bin +FROM node:14-alpine as builder +RUN apk update && apk add yarn --no-cache WORKDIR /usr/src/app @@ -22,10 +20,6 @@ COPY src src RUN yarn RUN yarn build:prod -# Pruning -# RUN npm prune --production -RUN node-prune - FROM node:14-alpine as runner COPY --from=builder /usr/src/app/dist /app/dist COPY --from=builder /usr/src/app/node_modules /app/node_modules -- 2.44.1