diff --git a/match_collector/Dockerfile b/match_collector/Dockerfile index 5920ab0..61e210b 100644 --- a/match_collector/Dockerfile +++ b/match_collector/Dockerfile @@ -5,4 +5,4 @@ USER node COPY --chown=node:node package*.json ./ RUN npm install COPY --chown=node:node . . -CMD /bin/bash -c "node --import=tsx index.js && sleep 20h" \ No newline at end of file +CMD /bin/sh -c "node --import=tsx index.ts && sleep 20h" \ No newline at end of file diff --git a/patch_detector/Dockerfile b/patch_detector/Dockerfile index 12066db..5363888 100644 --- a/patch_detector/Dockerfile +++ b/patch_detector/Dockerfile @@ -5,4 +5,4 @@ USER node COPY --chown=node:node package*.json ./ RUN npm install COPY --chown=node:node . . -CMD /bin/bash -c "node --import=tsc index.ts && sleep 1h" \ No newline at end of file +CMD /bin/sh -c "node --import=tsx index.ts && sleep 1h" \ No newline at end of file