1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy-ui.git synced 2025-01-23 22:26:46 +00:00
lemmy-ui/Dockerfile

34 lines
739 B
Text
Raw Normal View History

2021-01-04 10:44:06 -05:00
FROM node:14-alpine as builder
2021-01-04 10:56:37 -05:00
RUN apk update && apk add yarn python3 build-base gcc wget git --no-cache
WORKDIR /usr/src/app
# Cache deps
COPY package.json yarn.lock ./
RUN yarn install --pure-lockfile
2020-10-23 15:14:42 +03:00
# Build
COPY generate_translations.js \
tsconfig.json \
webpack.config.js \
.babelrc \
2020-10-23 15:14:42 +03:00
./
2020-09-10 14:49:33 -05:00
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
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
EXPOSE 1234
WORKDIR /app
CMD node dist/js/server.js