lemmy-ui/Dockerfile

30 lines
592 B
Docker
Raw Normal View History

2021-01-04 15:44:06 +00:00
FROM node:14-alpine as builder
2021-01-04 15:51:51 +00:00
RUN apk update && apk add yarn python3 --no-cache
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
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