mirror of
https://github.com/BluemediaGER/muse.git
synced 2024-11-12 21:05:29 +01:00
20 lines
217 B
Docker
20 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"]
|