From ad9ab0075e696e37076e06bf8f691009894b67e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Pr=C3=A9vost?= <998369+prevostc@users.noreply.github.com> Date: Sun, 8 Dec 2024 20:10:02 +0100 Subject: [PATCH] fix api build --- api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/Dockerfile b/api/Dockerfile index 9afddaf..e3d5618 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app # Install dependencies only FROM base AS deps COPY package.json . -RUN npm ci +RUN bun install --frozen-lockfile # Production image FROM base AS runner