From: Dessalines Date: Mon, 4 Jan 2021 15:44:06 +0000 (-0500) Subject: Removing node-prune. X-Git-Url: http://these/git/%7Bthis.favIcon%7D?a=commitdiff_plain;h=78d2fb9ce16a32ddf81dd3f01db94efac9cd2d69;p=lemmy-ui.git Removing node-prune. --- 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