From 6ea0c40125030ab12b9704ba2c94b0736a5e7168 Mon Sep 17 00:00:00 2001 From: tagyoureit Date: Sat, 20 Apr 2024 10:13:15 -0700 Subject: [PATCH] streamline --- .docker/Dockerfile.linux | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.docker/Dockerfile.linux b/.docker/Dockerfile.linux index b22fb785..8b3e5ce9 100644 --- a/.docker/Dockerfile.linux +++ b/.docker/Dockerfile.linux @@ -12,8 +12,8 @@ WORKDIR /app/nodejs-poolcontroller # # Copy the source code and necessary files for the first application # COPY ./nodejs-poolcontroller/package*.json ./ -# COPY ./nodejs-poolcontroller/defaultConfig.json ./config.json -# COPY ./nodejs-poolcontroller ./ +COPY ./nodejs-poolcontroller/defaultConfig.json ./config.json +COPY ./nodejs-poolcontroller ./ # Install dependencies and build the first application RUN npm ci @@ -30,7 +30,7 @@ WORKDIR /app/nodejs-poolcontroller-dashpanel # # Copy the source code and necessary files for the second application # COPY ./nodejs-poolcontroller-dashpanel/package*.json ./ -# COPY ./nodejs-poolcontroller-dashpanel ./ +COPY ./nodejs-poolcontroller-dashpanel ./ # Install dependencies and build the second application RUN npm ci