Skip to content

Commit

Permalink
debug steps
Browse files Browse the repository at this point in the history
  • Loading branch information
tagyoureit committed Apr 20, 2024
1 parent 065adde commit 8fc2c11
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .docker/Dockerfile.linux
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ 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 ./
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
Expand Down

0 comments on commit 8fc2c11

Please sign in to comment.