diff --git a/tatort/Dockerfile b/tatort/Dockerfile index 28eb977..9485a77 100644 --- a/tatort/Dockerfile +++ b/tatort/Dockerfile @@ -2,8 +2,7 @@ FROM node:19 as build ENV NODE_ENV=production WORKDIR /app -COPY package.json ./ -COPY package-lock.json ./ +COPY package*.json ./ RUN npm ci COPY . ./ RUN npm run build