mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-09 11:45:29 +01:00
35 lines
510 B
Docker
35 lines
510 B
Docker
FROM node:16.13.0-alpine AS base
|
|
|
|
# Install ffmpeg and build dependencies
|
|
RUN apk add --no-cache ffmpeg python2 make g++
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY package.json .
|
|
COPY yarn.lock .
|
|
|
|
# Install prod dependencies
|
|
RUN yarn install --prod
|
|
|
|
# Dependencies
|
|
FROM base AS dependencies
|
|
|
|
# Install dev dependencies
|
|
RUN yarn install
|
|
|
|
# Build app
|
|
FROM dependencies AS builder
|
|
|
|
COPY . .
|
|
|
|
RUN yarn build
|
|
|
|
# Only copy essentials
|
|
FROM base AS prod
|
|
|
|
COPY --from=builder /usr/app/dist dist
|
|
|
|
ENV DATA_DIR /data
|
|
|
|
CMD ["yarn", "start"]
|