fix(capture): correct npm install COPY path in Dockerfile

This commit is contained in:
Wild Dragon Dev 2026-06-03 18:14:39 +00:00
parent 69eefdb512
commit 5eaf71b70c

View file

@ -207,9 +207,9 @@ RUN ln -sf libvideomasterhd.so.6.34.1 /usr/local/lib/deltacast/libvideomas
RUN mkdir -p /live /growing RUN mkdir -p /live /growing
WORKDIR /app WORKDIR /app
COPY package*.json ./ COPY services/capture/package*.json ./
RUN npm install --omit=dev RUN npm install --omit=dev
COPY . . COPY services/capture/. .
EXPOSE 3001 EXPOSE 3001
CMD ["node", "src/index.js"] CMD ["node", "src/index.js"]