dont copy package-lock

This commit is contained in:
Alexandros Mandilaras 2024-04-08 14:09:18 +03:00
parent 48e9ca17b1
commit fad3448e3e
1 changed files with 0 additions and 1 deletions

View File

@ -3,7 +3,6 @@ FROM node:20-alpine AS builder
# copy the package.json to install dependencies
COPY package.json ./
COPY package-lock.json ./
# Install the dependencies and make the folder
RUN npm install && mkdir /src && mv ./node_modules ./src