changed package locations for compatibility with npm

This commit is contained in:
2023-06-11 12:25:25 +00:00
parent a672409e4a
commit 2f94733e2a
3 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ FROM node:18
WORKDIR /app
# Copy package.json and package-lock.json to the working directory
COPY source/package.json source/package-lock.json /app/
COPY package.json package-lock.json /app/
# Install dependencies
RUN npm install --production