2020-06-27 09:25:06 -05:00
|
|
|
FROM node:14.4.0-alpine AS base
|
2018-10-09 01:09:50 -05:00
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
|
2018-10-30 07:18:03 -05:00
|
|
|
RUN npm i -g npm@latest
|
|
|
|
|
2018-10-09 01:09:50 -05:00
|
|
|
WORKDIR /misskey
|
|
|
|
|
|
|
|
FROM base AS builder
|
|
|
|
|
2018-10-24 00:36:42 -05:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
file \
|
2020-08-09 11:33:01 -05:00
|
|
|
git \
|
2018-11-26 09:32:56 -06:00
|
|
|
g++ \
|
|
|
|
gcc \
|
|
|
|
libc-dev \
|
|
|
|
libtool \
|
2018-10-24 00:36:42 -05:00
|
|
|
make \
|
|
|
|
nasm \
|
|
|
|
pkgconfig \
|
2018-11-26 09:32:56 -06:00
|
|
|
python \
|
2018-10-24 00:36:42 -05:00
|
|
|
zlib-dev
|
2018-10-30 07:18:03 -05:00
|
|
|
|
2020-05-08 03:45:59 -05:00
|
|
|
COPY package.json yarn.lock ./
|
2019-07-13 19:58:45 -05:00
|
|
|
RUN yarn install
|
2019-04-07 07:50:36 -05:00
|
|
|
COPY . ./
|
2019-07-13 19:58:45 -05:00
|
|
|
RUN yarn build
|
2018-10-09 01:09:50 -05:00
|
|
|
|
|
|
|
FROM base AS runner
|
|
|
|
|
2019-02-05 04:32:53 -06:00
|
|
|
RUN apk add --no-cache \
|
|
|
|
ffmpeg \
|
|
|
|
tini
|
2019-02-17 06:26:00 -06:00
|
|
|
RUN npm i -g web-push
|
2018-10-09 01:09:50 -05:00
|
|
|
ENTRYPOINT ["/sbin/tini", "--"]
|
|
|
|
|
2018-10-30 07:18:03 -05:00
|
|
|
COPY --from=builder /misskey/node_modules ./node_modules
|
|
|
|
COPY --from=builder /misskey/built ./built
|
|
|
|
COPY . ./
|
|
|
|
|
2019-05-18 13:21:39 -05:00
|
|
|
CMD ["npm", "run", "migrateandstart"]
|