Files
misskey/Dockerfile
T

45 lines
686 B
Docker
Raw Normal View History

2018-10-24 14:36:42 +09:00
FROM alpine:3.8 AS base
2018-10-09 15:09:50 +09:00
ENV NODE_ENV=production
2018-10-24 14:36:42 +09:00
RUN apk add --no-cache nodejs nodejs-npm zlib
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 \
gcc \
g++ \
libc-dev \
python \
autoconf \
automake \
file \
make \
nasm \
pkgconfig \
libtool \
zlib-dev
2018-10-30 21:18:03 +09:00
RUN npm i -g node-gyp
COPY ./package.json ./
RUN npm i
COPY . ./
RUN node-gyp configure \
2018-10-30 12:36:14 +09:00
&& node-gyp build \
&& npm run build
2018-10-09 15:09:50 +09:00
FROM base AS runner
RUN apk add --no-cache tini
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 . ./
2018-10-09 15:09:50 +09:00
CMD ["npm", "start"]