lemmy-ui/Dockerfile

36 lines
757 B
Docker
Raw Normal View History

2021-01-04 15:38:04 +00:00
FROM node:14 as builder
2021-01-04 15:41:08 +00:00
RUN apt-get update && apt-get install -y curl yarn bash
RUN curl -sfL https://install.goreleaser.com/github.com/tj/node-prune.sh | bash -s -- -b /usr/local/bin
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
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
COPY src src
RUN yarn
RUN yarn build:prod
# Pruning
# RUN npm prune --production
RUN node-prune
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