mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-04-12 02:03:55 +02:00
19 lines
217 B
Docker
19 lines
217 B
Docker
FROM jrottenberg/ffmpeg:4.0-scratch
|
|
FROM node:13
|
|
|
|
# Copy ffmpeg bins
|
|
COPY --from=0 / /
|
|
|
|
WORKDIR /usr/app
|
|
|
|
COPY package.json .
|
|
|
|
RUN yarn install
|
|
|
|
COPY . .
|
|
|
|
RUN yarn run build
|
|
|
|
ENV DATA_DIR /data
|
|
|
|
CMD ["yarn", "start"]
|