Removing node-prune.

This commit is contained in:
Dessalines 2021-01-04 10:44:06 -05:00
parent 99b9afc52e
commit 78d2fb9ce1

View file

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