add services/capture/Dockerfile
This commit is contained in:
parent
a463b67bce
commit
63a8415cee
1 changed files with 8 additions and 0 deletions
8
services/capture/Dockerfile
Normal file
8
services/capture/Dockerfile
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
FROM node:20-bookworm
|
||||||
|
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
||||||
|
WORKDIR /app
|
||||||
|
COPY package*.json ./
|
||||||
|
RUN npm install --omit=dev
|
||||||
|
COPY . .
|
||||||
|
EXPOSE 3001
|
||||||
|
CMD ["node", "src/index.js"]
|
||||||
Loading…
Reference in a new issue