mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 23:55:58 +09:00
6a8c560d21
* Modify Dockerfile and docker-compose.yml * Fix MongoDB connection error * Use alpine-3.8 instead of alpine-edge as base image * Modify install packages * Modify Mongodb image tag name * Update Docker documents * Add 'Download misskey' paragraph * Make redis optional for Docker
39 lines
654 B
Docker
39 lines
654 B
Docker
FROM alpine:3.8 AS base
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
RUN apk add --no-cache nodejs nodejs-npm zlib
|
|
WORKDIR /misskey
|
|
COPY . ./
|
|
|
|
FROM base AS builder
|
|
|
|
RUN apk add --no-cache \
|
|
gcc \
|
|
g++ \
|
|
libc-dev \
|
|
python \
|
|
autoconf \
|
|
automake \
|
|
file \
|
|
make \
|
|
nasm \
|
|
pkgconfig \
|
|
libtool \
|
|
zlib-dev
|
|
RUN npm install \
|
|
&& npm install -g node-gyp \
|
|
&& node-gyp configure \
|
|
&& node-gyp build \
|
|
&& npm run build
|
|
|
|
FROM base AS runner
|
|
|
|
COPY --from=builder /misskey/built ./built
|
|
COPY --from=builder /misskey/node_modules ./node_modules
|
|
|
|
RUN apk add --no-cache tini
|
|
ENTRYPOINT ["/sbin/tini", "--"]
|
|
|
|
CMD ["npm", "start"]
|