From 909473d9aa8220b979da328ea338b529a000bb27 Mon Sep 17 00:00:00 2001 From: Alexey Date: Tue, 11 Feb 2025 12:31:16 +0300 Subject: [PATCH] Add lock file to docker copy to avoid accidental upgrades (#494) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6f76582..3c17ce9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ ENV REACT_APP_SERVER_HOST=$REACT_APP_SERVER_HOST ENV REACT_APP_TMDB_API_KEY=$REACT_APP_TMDB_API_KEY ENV PUBLIC_URL=$PUBLIC_URL -COPY ./web/package.json . +COPY ./web/package.json ./web/yarn.lock ./ RUN yarn install # Build front once upon multiarch build