2023-10-20 00:47:28 +00:00
|
|
|
FROM node:20-alpine as builder
|
2023-11-27 12:32:04 +00:00
|
|
|
|
|
|
|
# Upgrade to edge to fix sharp/libvips issues
|
|
|
|
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories
|
|
|
|
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
|
|
|
|
|
|
|
# Added vips-dev and pkgconfig so that local vips is used instead of prebuilt
|
|
|
|
# Done for two reasons:
|
|
|
|
# - libvips binaries are not available for ARM32
|
|
|
|
# - It can break depending on the CPU (https://github.com/LemmyNet/lemmy-ui/issues/1566)
|
|
|
|
RUN apk update && apk upgrade && apk add --no-cache curl yarn python3 build-base gcc wget git vips-dev pkgconfig
|
|
|
|
|
|
|
|
# Install node-gyp
|
|
|
|
RUN npm install -g node-gyp
|
2020-09-09 23:56:02 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2023-05-12 01:07:59 +00:00
|
|
|
ENV npm_config_target_platform=linux
|
|
|
|
ENV npm_config_target_libc=musl
|
|
|
|
|
2020-09-09 23:56:02 +00:00
|
|
|
# Cache deps
|
|
|
|
COPY package.json yarn.lock ./
|
2023-11-27 12:32:04 +00:00
|
|
|
|
|
|
|
RUN yarn --production --prefer-offline --pure-lockfile --network-timeout 100000
|
2020-09-09 23:56:02 +00:00
|
|
|
|
2020-10-23 12:14:42 +00:00
|
|
|
# Build
|
2020-09-09 23:56:02 +00:00
|
|
|
COPY generate_translations.js \
|
|
|
|
tsconfig.json \
|
|
|
|
webpack.config.js \
|
|
|
|
.babelrc \
|
2020-10-23 12:14:42 +00:00
|
|
|
./
|
|
|
|
|
2020-09-10 19:49:33 +00:00
|
|
|
COPY lemmy-translations lemmy-translations
|
2020-09-09 23:56:02 +00:00
|
|
|
COPY src src
|
2021-04-26 13:57:41 +00:00
|
|
|
COPY .git .git
|
|
|
|
|
|
|
|
# Set UI version
|
|
|
|
RUN echo "export const VERSION = '$(git describe --tag)';" > "src/shared/version.ts"
|
2020-09-09 23:56:02 +00:00
|
|
|
|
2023-11-27 12:32:04 +00:00
|
|
|
RUN yarn --production --prefer-offline --network-timeout 100000
|
2023-06-29 15:12:12 +00:00
|
|
|
RUN NODE_OPTIONS="--max-old-space-size=8192" yarn build:prod
|
2020-09-09 23:56:02 +00:00
|
|
|
|
2022-10-21 19:28:18 +00:00
|
|
|
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.*'
|
|
|
|
|
2023-10-20 00:47:28 +00:00
|
|
|
FROM node:20-alpine as runner
|
2023-11-27 12:32:04 +00:00
|
|
|
ENV NODE_ENV=production
|
|
|
|
|
|
|
|
# Upgrade to edge to fix sharp/libvips issues
|
|
|
|
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/main" > /etc/apk/repositories
|
|
|
|
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
|
|
|
|
|
|
|
RUN apk update && apk upgrade && apk add curl vips-cpp
|
|
|
|
|
2020-09-09 23:56:02 +00:00
|
|
|
COPY --from=builder /usr/src/app/dist /app/dist
|
|
|
|
COPY --from=builder /usr/src/app/node_modules /app/node_modules
|
|
|
|
|
2023-07-10 14:50:25 +00:00
|
|
|
RUN chown -R node:node /app
|
|
|
|
|
2023-11-27 12:32:04 +00:00
|
|
|
LABEL org.opencontainers.image.authors="The Lemmy Authors"
|
|
|
|
LABEL org.opencontainers.image.source="https://github.com/LemmyNet/lemmy-ui"
|
|
|
|
LABEL org.opencontainers.image.licenses="AGPL-3.0-or-later"
|
|
|
|
LABEL org.opencontainers.image.description="The official web app for Lemmy."
|
|
|
|
|
|
|
|
HEALTHCHECK --interval=60s --start-period=10s --retries=2 --timeout=10s CMD curl -ILfSs http://localhost:1234/ > /dev/null || exit 1
|
|
|
|
|
2023-07-10 14:50:25 +00:00
|
|
|
USER node
|
2020-09-07 03:41:46 +00:00
|
|
|
EXPOSE 1234
|
2020-09-10 16:39:01 +00:00
|
|
|
WORKDIR /app
|
2023-11-27 12:32:04 +00:00
|
|
|
CMD exec node dist/js/server.js
|