muse/Dockerfile

34 lines
484 B
Docker
Raw Normal View History

FROM node:14-alpine AS base
2020-03-17 18:30:27 +01:00
2020-11-18 20:32:28 +01:00
# Install ffmpeg and build dependencies
RUN apk add --no-cache ffmpeg python make g++
2020-03-17 18:30:27 +01:00
WORKDIR /usr/app
COPY package* ./
2020-03-17 18:30:27 +01:00
2020-11-18 21:14:16 +01:00
# Install prod dependencies
RUN yarn install --prod
2020-11-18 21:14:16 +01:00
# Dependencies
FROM base AS dependencies
2020-11-18 21:14:16 +01:00
# Install dev dependencies
RUN yarn install
# Build app
FROM dependencies AS builder
2020-03-17 18:30:27 +01:00
COPY . .
RUN yarn build
# Only copy essentials
FROM base AS prod
2020-10-24 21:42:37 +02:00
COPY --from=builder /usr/app/dist dist
2020-03-17 18:30:27 +01:00
ENV DATA_DIR /data
CMD ["yarn", "start"]