From cef62d8ac88a6c2c6a432d7b17c4b1d04249bf24 Mon Sep 17 00:00:00 2001
From: Kevin Kaniaburka <kevin.kaniaburka@gmail.com>
Date: Fri, 9 Dec 2022 13:42:55 +0100
Subject: [PATCH] [Docker] Change wildcard to safely copy yarn.lock only

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index ad0406aedb..f579209267 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -93,7 +93,7 @@ RUN set -eux; \
 	;
 
 # prevent the reinstallation of vendors at every changes in the source code
-COPY package.json yarn.* ./
+COPY package.json yar[n].lock ./
 RUN set -eux; \
     yarn install; \
     yarn cache clean