chore: add echo command to Dockerfile for debugging during build

This commit is contained in:
2026-02-28 00:07:07 +01:00
parent 7a08a63db3
commit be2ee3fea7

View File

@@ -12,6 +12,7 @@ RUN npm install
# copy the rest of the app # copy the rest of the app
COPY . . COPY . .
RUN echo 'COPY DOWN'
# default command to run the app # default command to run the app
CMD ["node", "index.js"] CMD ["node", "index.js"]