add services/capture/Dockerfile

This commit is contained in:
Zac Gaetano 2026-04-07 21:58:28 -04:00
parent a463b67bce
commit 63a8415cee

View 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"]