Files
misskey/Dockerfile
T

37 lines
869 B
Docker
Raw Normal View History

2022-04-23 12:37:44 +09:00
FROM node:18.0.0-alpine3.15 AS base
2018-10-09 15:09:50 +09:00
2022-05-15 22:22:06 +09:00
ARG NODE_ENV=production
2018-10-09 15:09:50 +09:00
WORKDIR /misskey
2021-09-05 02:18:12 +09:00
ENV BUILD_DEPS autoconf automake file g++ gcc libc-dev libtool make nasm pkgconfig python3 zlib-dev git
2018-10-09 15:09:50 +09:00
FROM base AS builder
2019-04-07 21:50:36 +09:00
COPY . ./
2021-09-05 02:18:12 +09:00
RUN apk add --no-cache $BUILD_DEPS && \
2022-04-23 12:37:44 +09:00
git submodule update --init && \
yarn install && \
yarn build && \
rm -rf .git
2018-10-09 15:09:50 +09:00
FROM base AS runner
RUN apk add --no-cache \
2022-04-23 12:37:44 +09:00
ffmpeg \
tini
2021-03-05 14:46:58 +09:00
2018-10-09 15:09:50 +09:00
ENTRYPOINT ["/sbin/tini", "--"]
2018-10-30 21:18:03 +09:00
COPY --from=builder /misskey/node_modules ./node_modules
COPY --from=builder /misskey/built ./built
2021-11-12 11:46:17 +09:00
COPY --from=builder /misskey/packages/backend/node_modules ./packages/backend/node_modules
COPY --from=builder /misskey/packages/backend/built ./packages/backend/built
COPY --from=builder /misskey/packages/client/node_modules ./packages/client/node_modules
2018-10-30 21:18:03 +09:00
COPY . ./
2022-05-15 22:22:06 +09:00
ENV NODE_ENV=production
2019-05-19 03:21:39 +09:00
CMD ["npm", "run", "migrateandstart"]
2021-09-05 02:18:12 +09:00