From 5ec9d593822f745b28f4ed9f9fb033d3b6e67629 Mon Sep 17 00:00:00 2001 From: prafull-opensignlabs <93375423+prafull-opensignlabs@users.noreply.github.com> Date: Thu, 22 Feb 2024 18:48:36 +0530 Subject: [PATCH] Update Dockerhubfile --- apps/OpenSignServer/Dockerhubfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/OpenSignServer/Dockerhubfile b/apps/OpenSignServer/Dockerhubfile index 9e2bfbe6c..4f949aa1d 100644 --- a/apps/OpenSignServer/Dockerhubfile +++ b/apps/OpenSignServer/Dockerhubfile @@ -5,7 +5,7 @@ FROM node:16 WORKDIR /usr/src/app # Copy package.json and package-lock.json first to leverage Docker cache -COPY ./package*.json ./ +COPY apps/OpenSignServer/package*.json ./ # Install application dependencies RUN npm install @@ -14,7 +14,7 @@ RUN npm install # RUN apk add --no-cache make gcc g++ python3 # Copy the current directory contents into the container -COPY ./ . +COPY apps/OpenSignServer/ . # Make port 8080 available to the world outside this container EXPOSE 8080