chore: add lockfile before npm install

This commit is contained in:
Sammy Teillet
2023-04-18 14:41:07 +02:00
parent a9bc05372d
commit 0639c9d863

View File

@@ -1,6 +1,7 @@
FROM node:18-alpine as server
COPY ./server/package.json ./
COPY ./server/package-lock.json ./
RUN npm install