Files
misskey/Dockerfile
T

43 lines
633 B
Docker
Raw Normal View History

2019-05-04 14:53:46 +09:00
FROM node:12.1-alpine AS base
2018-10-09 15:09:50 +09:00
ENV NODE_ENV=production
2018-10-30 21:18:03 +09:00
RUN npm i -g npm@latest
2018-10-09 15:09:50 +09:00
WORKDIR /misskey
FROM base AS builder
2018-10-24 14:36:42 +09:00
RUN apk add --no-cache \
autoconf \
automake \
file \
2018-11-27 00:32:56 +09:00
g++ \
gcc \
libc-dev \
libtool \
2018-10-24 14:36:42 +09:00
make \
nasm \
pkgconfig \
2018-11-27 00:32:56 +09:00
python \
2018-10-24 14:36:42 +09:00
zlib-dev
2018-10-30 21:18:03 +09:00
2019-04-07 21:50:36 +09:00
COPY package.json ./
2019-04-18 01:09:31 +09:00
RUN npm i
2019-04-07 21:50:36 +09:00
COPY . ./
2019-04-18 01:09:31 +09:00
RUN npm run build
2018-10-09 15:09:50 +09:00
FROM base AS runner
RUN apk add --no-cache \
ffmpeg \
tini
RUN npm i -g web-push
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"]