package-lock

This commit is contained in:
2023-06-11 23:11:03 +02:00
parent a38909babd
commit 2551250ea0

View File

@@ -5,7 +5,8 @@ FROM node:latest
WORKDIR /usr/src/app
# Kopiere die package.json und package-lock.json in das Arbeitsverzeichnis
COPY package*.json ./
COPY package.json ./
COPY package-lock.json ./
# Installiere die Abhängigkeiten
RUN npm install