mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 12:21:13 +00:00
Removing node-prune.
This commit is contained in:
parent
99b9afc52e
commit
78d2fb9ce1
1 changed files with 2 additions and 8 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,7 +1,5 @@
|
||||||
FROM node:14 as builder
|
FROM node:14-alpine as builder
|
||||||
RUN apt-get update && apt-get install -y curl yarn bash
|
RUN apk update && apk add yarn --no-cache
|
||||||
|
|
||||||
RUN curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /usr/local/bin
|
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
@ -22,10 +20,6 @@ COPY src src
|
||||||
RUN yarn
|
RUN yarn
|
||||||
RUN yarn build:prod
|
RUN yarn build:prod
|
||||||
|
|
||||||
# Pruning
|
|
||||||
# RUN npm prune --production
|
|
||||||
RUN node-prune
|
|
||||||
|
|
||||||
FROM node:14-alpine as runner
|
FROM node:14-alpine as runner
|
||||||
COPY --from=builder /usr/src/app/dist /app/dist
|
COPY --from=builder /usr/src/app/dist /app/dist
|
||||||
COPY --from=builder /usr/src/app/node_modules /app/node_modules
|
COPY --from=builder /usr/src/app/node_modules /app/node_modules
|
||||||
|
|
Loading…
Reference in a new issue