]> git.immae.eu Git - github/bastienwirtz/homer.git/blobdiff - Dockerfile
Fix CI build
[github/bastienwirtz/homer.git] / Dockerfile
index 6a6d741e255a51e91f88f4537b6e89cee4bcab75..58d08dcf5207d0a19a16ec8c41d574420667f127 100644 (file)
@@ -3,8 +3,8 @@ FROM node:lts-alpine3.19 as build-stage
 
 WORKDIR /app
 
-COPY package*.json ./
-RUN yarn install --frozen-lockfile
+COPY package.json ./
+RUN yarn install --frozen-lockfile --non-interactive
 
 COPY . .
 RUN yarn build