From e58b5bc3c3185434851930f0f16ba080cd2a3f58 Mon Sep 17 00:00:00 2001 From: Lasse Alm Date: Mon, 11 Dec 2023 11:51:51 +0100 Subject: [PATCH] remove link --- frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 7cbbeadf2..260013cf6 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -13,10 +13,10 @@ WORKDIR /app # Build FROM base as build -COPY --link package.json yarn.lock . +COPY package.json yarn.lock . RUN yarn -COPY --link . . +COPY . . RUN yarn build # Run