X-Git-Url: http://these/git/?a=blobdiff_plain;f=Dockerfile;h=92b3f7e62de6c3576b18a45b24d5db4f25047774;hb=fa4fe57a8678528541560e90f73a058086882235;hp=edf94cff0e03e353ff45313788988ae0aef2de56;hpb=4983cb82b56199af0b7d4bc167aa6b3df64174db;p=lemmy-ui.git diff --git a/Dockerfile b/Dockerfile index edf94cf..92b3f7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,16 @@ -FROM node:alpine as builder +FROM node:20.2-alpine as builder RUN apk update && apk add curl yarn python3 build-base gcc wget git --no-cache RUN curl -sf https://gobinaries.com/tj/node-prune | sh WORKDIR /usr/src/app +ENV npm_config_target_arch=x64 +ENV npm_config_target_platform=linux +ENV npm_config_target_libc=musl + # Cache deps COPY package.json yarn.lock ./ -RUN yarn install --production --ignore-scripts --prefer-offline --pure-lockfile +RUN yarn --production --prefer-offline --pure-lockfile # Build COPY generate_translations.js \ @@ -22,8 +26,8 @@ COPY .git .git # Set UI version RUN echo "export const VERSION = '$(git describe --tag)';" > "src/shared/version.ts" -RUN yarn install --production --ignore-scripts --prefer-offline -RUN yarn build:prod +RUN yarn --production --prefer-offline +RUN NODE_OPTIONS="--max-old-space-size=8192" yarn build:prod # Prune the image RUN node-prune /usr/src/app/node_modules