19 lines
557 B
Docker
19 lines
557 B
Docker
FROM zotify as zotify
|
|
FROM node:lts-alpine as builder
|
|
|
|
RUN apk update && apk add build-base python3
|
|
WORKDIR /musicbot
|
|
COPY package.json package.json
|
|
COPY ./.yarnrc.yml ./.yarnrc.yml
|
|
COPY ./.yarn/releases ./.yarn/releases
|
|
RUN yarn install
|
|
|
|
FROM node:lts-alpine
|
|
RUN apk update && apk add ffmpeg python3
|
|
COPY --from=zotify /app/dist/zotify /bin/zotify
|
|
WORKDIR /musicbot
|
|
COPY build build
|
|
COPY --from=builder /musicbot/node_modules ./node_modules
|
|
COPY package.json package.json
|
|
VOLUME [ "/musicbot/cache" ]
|
|
CMD ["node", "--enable-source-maps", "build/index.js"] |