From 039c4f34b986b6125ea5d518fc5ebe64fa775a94 Mon Sep 17 00:00:00 2001 From: Alexander Brevig Date: Thu, 23 May 2024 16:08:41 +0200 Subject: [PATCH] ci: fix docker next-tavla --- next-tavla/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/next-tavla/Dockerfile b/next-tavla/Dockerfile index 2a5a86adf..f766ab980 100644 --- a/next-tavla/Dockerfile +++ b/next-tavla/Dockerfile @@ -7,9 +7,8 @@ RUN apk add --update nodejs && \ FROM base AS deps WORKDIR /app -COPY next-tavla ./ +COPY . . -COPY next-tavla/yarn.lock ./ RUN yarn FROM deps AS builder