X-Git-Url: http://these/git/?a=blobdiff_plain;f=Dockerfile;h=00baae145182ff8b502fcbd14ae8c49c9e10f1a4;hb=61e0241d8930badc4a77cd973c3cbb64bd13c49e;hp=337eec5f6836e07fe7b55c2fbd491491e35ab459;hpb=e5b63675624ca1d0b39e916fb30f0e52153f1562;p=lemmy-ui.git diff --git a/Dockerfile b/Dockerfile index 337eec5..00baae1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,16 @@ -FROM node:14 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,18 +21,30 @@ 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 -RUN yarn build:prod +RUN yarn --production --prefer-offline +RUN NODE_OPTIONS="--max-old-space-size=8192" yarn build:prod -# Pruning -# RUN npm prune --production -RUN node-prune +# Prune the image +RUN node-prune /usr/src/app/node_modules -FROM node:14-alpine as runner +RUN rm -rf ./node_modules/import-sort-parser-typescript +RUN rm -rf ./node_modules/typescript +RUN rm -rf ./node_modules/npm + +RUN du -sh ./node_modules/* | sort -nr | grep '\dM.*' + +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 +RUN chown -R node:node /app + +USER node EXPOSE 1234 WORKDIR /app CMD node dist/js/server.js