Files
misskey/Dockerfile
T

33 lines
606 B
Docker
Raw Normal View History

2021-08-12 11:28:51 +09:00
FROM node:16.6.2-alpine3.13 AS base
2018-10-09 15:09:50 +09:00
ENV NODE_ENV=production
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 && \
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 \
ffmpeg \
2021-08-15 18:12:46 +09:00
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
COPY . ./
2019-05-19 03:21:39 +09:00
CMD ["npm", "run", "migrateandstart"]
2021-09-05 02:18:12 +09:00