Compare commits

..

No commits in common. "bbbbb3ad6581f8d9c1367b2f6187531cb91e73b7" and "92fa29aa850e3edc8270118b43a23a89261193c7" have entirely different histories.

2 changed files with 4 additions and 5 deletions

View File

@ -5,11 +5,11 @@ RUN apt-get update && apt-get install curl ffmpeg -y
WORKDIR /opt/prod/app WORKDIR /opt/prod/app
COPY . . COPY . .
RUN chmod +x /opt/prod/app/ffmpegQueuePipe.sh RUN chmod +x ffmpegQueuePipe.sh
RUN mkdir -p /opt/prod/pipe/ RUN mkdir -p /opt/prod/pipe/
RUN mkdir -p /opt/prod/storage/uploadsPart1 RUN mkdir -p /opt/prod/storage/uploadsPart1
RUN mkdir -p /opt/prod/storage/uploadsPart2 RUN mkdir -p /opt/prod/storage/uploadsPart2
RUN npm install RUN npm install
CMD /opt/prod/app/start.sh CMD "./ffmpegQueuePipe.sh ; node dist/index.js"

View File

@ -1,3 +1,2 @@
./ffmpegQueuePipe.sh & ./ffmpegQueuePipe.sh &;
node dist/index.js node dist/index.js