From 8fc2c118fa8b5dd7df8aa772f21c9204699fd53a Mon Sep 17 00:00:00 2001 From: tagyoureit Date: Sat, 20 Apr 2024 09:57:12 -0700 Subject: [PATCH] debug steps --- .docker/Dockerfile.linux | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.docker/Dockerfile.linux b/.docker/Dockerfile.linux index 26768b9e..a9e3fec9 100644 --- a/.docker/Dockerfile.linux +++ b/.docker/Dockerfile.linux @@ -9,9 +9,6 @@ RUN mkdir -p /app/nodejs-poolcontroller && chown node:node /app/nodejs-poolcontr # Set the working directory for the first application WORKDIR /app/nodejs-poolcontroller -RUN echo "Output" -RUN echo "Current directory contents: $(ls -la)" -RUN echo ls # Copy package.json and package-lock.json files for the first application COPY package*.json ./ @@ -19,11 +16,14 @@ COPY defaultConfig.json config.json # Copy the rest of the application files for the first application COPY . . +RUN echo "Output" +RUN echo "Current directory contents: $(ls -la)" +RUN echo ls # Install dependencies RUN npm ci RUN echo "tsc version..." -RUN echo tsc --version +RUN echo "$(tsc --version)" # Build the first application RUN npm run build