diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2024-03-11 09:54:09 +0100 |
---|---|---|
committer | Bastien Wirtz <bastien.wirtz@gmail.com> | 2024-03-11 10:00:37 +0100 |
commit | bcebb3e67ef546071d4a455ba4661d6a51152871 (patch) | |
tree | f88f3c15ee1f6c6c499837972fbdb5cbb4edda49 /Dockerfile | |
parent | 5f5a508b6eae6596dd46c09e25dedbc42d433740 (diff) | |
download | homer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.gz homer-bcebb3e67ef546071d4a455ba4661d6a51152871.tar.zst homer-bcebb3e67ef546071d4a455ba4661d6a51152871.zip |
Fix CI build
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,8 +3,8 @@ FROM node:lts-alpine3.19 as build-stage | |||
3 | 3 | ||
4 | WORKDIR /app | 4 | WORKDIR /app |
5 | 5 | ||
6 | COPY package*.json ./ | 6 | COPY package.json ./ |
7 | RUN yarn install --frozen-lockfile | 7 | RUN yarn install --frozen-lockfile --non-interactive |
8 | 8 | ||
9 | COPY . . | 9 | COPY . . |
10 | RUN yarn build | 10 | RUN yarn build |