From bfd7b2f668fb10acae0d69476b92e40d35da2e27 Mon Sep 17 00:00:00 2001 From: Adria Navarro Date: Wed, 7 Jun 2023 09:15:11 +0100 Subject: [PATCH] Fix yarn usage --- hosting/single/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosting/single/Dockerfile b/hosting/single/Dockerfile index 3d40620d26..b65cdc9939 100644 --- a/hosting/single/Dockerfile +++ b/hosting/single/Dockerfile @@ -11,13 +11,13 @@ RUN chmod +x /cleanup.sh # build server WORKDIR /app ADD packages/server . -COPY dist/yarn.lock . +COPY yarn.lock . RUN yarn install --production=true && /cleanup.sh # build worker WORKDIR /worker ADD packages/worker . -COPY dist/yarn.lock . +COPY yarn.lock . RUN yarn install --production=true && /cleanup.sh FROM budibase/couchdb