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