From 0f6a03f07b3ce3bdf5ec87ff0de0f4a2c6071da9 Mon Sep 17 00:00:00 2001 From: Federico Gimenez Date: Sat, 25 May 2024 12:34:32 +0200 Subject: [PATCH] copy separate items to prevent invalidating cache --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9d4c207..8706010 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && \ update-ca-certificates -COPY . /app +COPY patches /app/patches +COPY .git /app/.git +COPY .gitmodules /app WORKDIR /app