From 7ed657087b18455ef56873b9246f9043b8ca9578 Mon Sep 17 00:00:00 2001 From: Mostafa Ahangarha Date: Tue, 10 Oct 2023 23:34:39 +0330 Subject: [PATCH] Fix copy destination for package.json --- .controlplane/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.controlplane/Dockerfile b/.controlplane/Dockerfile index 0c61ea4..de4fb5b 100644 --- a/.controlplane/Dockerfile +++ b/.controlplane/Dockerfile @@ -17,7 +17,7 @@ RUN bundle config set without 'development test' && \ bundle install --jobs=3 --retry=3 # install node packages -COPY package.json yarn.lock . +COPY package.json yarn.lock ./ RUN yarn install # pick necessary app files