We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent addc762 commit 5ec9d59Copy full SHA for 5ec9d59
apps/OpenSignServer/Dockerhubfile
@@ -5,7 +5,7 @@ FROM node:16
5
WORKDIR /usr/src/app
6
7
# Copy package.json and package-lock.json first to leverage Docker cache
8
-COPY ./package*.json ./
+COPY apps/OpenSignServer/package*.json ./
9
10
# Install application dependencies
11
RUN npm install
@@ -14,7 +14,7 @@ RUN npm install
14
# RUN apk add --no-cache make gcc g++ python3
15
16
# Copy the current directory contents into the container
17
-COPY ./ .
+COPY apps/OpenSignServer/ .
18
19
# Make port 8080 available to the world outside this container
20
EXPOSE 8080
0 commit comments