X-Git-Url: http://these/git/?a=blobdiff_plain;f=Dockerfile;h=92b3f7e62de6c3576b18a45b24d5db4f25047774;hb=214eae5be57f87afe1905c7fc97a7d03df8dfd5b;hp=278142202aeb2a7e0f0167875d9e3ec02eee0d29;hpb=b0f050bd992440c8934b14a189ba9cf43de7d467;p=lemmy-ui.git diff --git a/Dockerfile b/Dockerfile index 2781422..92b3f7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,16 @@ -FROM node:14-alpine as builder -RUN apk add yarn curl bash --no-cache - -RUN curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /usr/local/bin +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 --pure-lockfile +RUN yarn --production --prefer-offline --pure-lockfile # Build COPY generate_translations.js \ @@ -18,15 +21,24 @@ COPY generate_translations.js \ COPY lemmy-translations lemmy-translations COPY src src +COPY .git .git + +# Set UI version +RUN echo "export const VERSION = '$(git describe --tag)';" > "src/shared/version.ts" + +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 -RUN yarn -RUN yarn build:prod +RUN rm -rf ./node_modules/import-sort-parser-typescript +RUN rm -rf ./node_modules/typescript +RUN rm -rf ./node_modules/npm -# Pruning -# RUN npm prune --production -RUN node-prune +RUN du -sh ./node_modules/* | sort -nr | grep '\dM.*' -FROM node:14-alpine as runner +FROM node:alpine as runner COPY --from=builder /usr/src/app/dist /app/dist COPY --from=builder /usr/src/app/node_modules /app/node_modules