diff --git a/services/capture/Dockerfile b/services/capture/Dockerfile new file mode 100644 index 0000000..9a8a226 --- /dev/null +++ b/services/capture/Dockerfile @@ -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"]