2022-11-09 19:53:07 +00:00
|
|
|
FROM node:alpine as builder
|
|
|
|
RUN apk update && apk add curl yarn python3 build-base gcc wget git --no-cache
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-11-09 19:53:07 +00:00
|
|
|
# Cache deps
|
|
|
|
COPY package.json yarn.lock ./
|
2023-05-12 01:07:59 +00:00
|
|
|
RUN yarn --prefer-offline --pure-lockfile
|
2022-11-09 19:53:07 +00:00
|
|
|
|
|
|
|
# Build
|
|
|
|
COPY generate_translations.js \
|
|
|
|
tsconfig.json \
|
|
|
|
webpack.config.js \
|
|
|
|
.babelrc \
|
|
|
|
./
|
|
|
|
|
|
|
|
COPY lemmy-translations lemmy-translations
|
|
|
|
COPY src src
|
|
|
|
|
|
|
|
# Set UI version
|
|
|
|
RUN echo "export const VERSION = 'dev';" > "src/shared/version.ts"
|
|
|
|
|
2023-05-12 01:07:59 +00:00
|
|
|
RUN yarn --prefer-offline
|
2022-11-09 19:53:07 +00:00
|
|
|
RUN yarn build:dev
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
EXPOSE 1234
|
|
|
|
WORKDIR /app
|
2023-05-12 01:07:59 +00:00
|
|
|
CMD node dist/js/server.js
|