2021-09-03 12:23:55 +00:00
|
|
|
FROM node:alpine as builder
|
2022-10-21 19:28:18 +00:00
|
|
|
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
|
2020-09-09 23:56:02 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
2023-05-12 01:07:59 +00:00
|
|
|
ENV npm_config_target_arch=x64
|
|
|
|
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-05-12 01:07:59 +00:00
|
|
|
RUN yarn --production --prefer-offline --pure-lockfile
|
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-05-12 01:07:59 +00:00
|
|
|
RUN yarn --production --prefer-offline
|
2020-09-10 16:39:01 +00:00
|
|
|
RUN yarn build:prod
|
2020-09-09 23:56:02 +00:00
|
|
|
|
2022-10-21 19:28:18 +00:00
|
|
|
# Prune the image
|
|
|
|
RUN node-prune /usr/src/app/node_modules
|
|
|
|
|
|
|
|
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.*'
|
|
|
|
|
2021-09-03 12:23:55 +00:00
|
|
|
FROM node:alpine as runner
|
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
|
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
EXPOSE 1234
|
2020-09-10 16:39:01 +00:00
|
|
|
WORKDIR /app
|
|
|
|
CMD node dist/js/server.js
|