1
0
Fork 0
mirror of https://github.com/bastienwirtz/homer.git synced 2026-01-23 02:15:09 +00:00

Fix CI build

This commit is contained in:
Bastien Wirtz 2024-03-11 09:54:09 +01:00
parent 5f5a508b6e
commit bcebb3e67e
4 changed files with 9 additions and 9 deletions

View 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