mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-05-09 03:31:37 +02:00
Add Dockerfile
This commit is contained in:
parent
426d0b0335
commit
1a1bdfd674
6 changed files with 55 additions and 28 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
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"]
|
Loading…
Add table
Add a link
Reference in a new issue