mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-09 18:05:09 +00:00
Removing node-prune.
This commit is contained in:
parent
99b9afc52e
commit
78d2fb9ce1
10
Dockerfile
10
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
|
||||
|
|
Loading…
Reference in a new issue