2021-01-04 15:44:06 +00:00
|
|
|
FROM node:14-alpine as builder
|
2021-01-04 15:56:37 +00:00
|
|
|
RUN apk update && apk add yarn python3 build-base gcc wget git --no-cache
|
2020-09-09 23:56:02 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
|
|
|
|
# Cache deps
|
|
|
|
COPY package.json yarn.lock ./
|
|
|
|
RUN yarn install --pure-lockfile
|
|
|
|
|
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
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
RUN yarn
|
2020-09-10 16:39:01 +00:00
|
|
|
RUN yarn build:prod
|
2020-09-09 23:56:02 +00:00
|
|
|
|
|
|
|
FROM node:14-alpine as runner
|
|
|
|
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
|