From be2ee3fea7ce3851f83854e12d43636260b6fb1b Mon Sep 17 00:00:00 2001 From: BolkeDerBaer Date: Sat, 28 Feb 2026 00:07:07 +0100 Subject: [PATCH] chore: add echo command to Dockerfile for debugging during build --- dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/dockerfile b/dockerfile index c75bf05..93b7461 100644 --- a/dockerfile +++ b/dockerfile @@ -12,6 +12,7 @@ RUN npm install # copy the rest of the app COPY . . +RUN echo 'COPY DOWN' # default command to run the app CMD ["node", "index.js"] \ No newline at end of file