From 1d9114de7b6092ac7983b0b2de5a2842d4250d80 Mon Sep 17 00:00:00 2001 From: mdecimus Date: Wed, 25 Jun 2025 16:34:50 +0200 Subject: [PATCH] Copy resources directory in Docker builds --- Dockerfile.build | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile.build b/Dockerfile.build index d13f7c18..778a2000 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -46,6 +46,7 @@ RUN cargo chef prepare --recipe-path recipe.json FROM base AS builder WORKDIR /app COPY --from=planner /app/recipe.json recipe.json +COPY resources/ resources/ ARG TARGET ARG BUILD_ENV SHELL ["/bin/bash", "-o", "pipefail", "-c"]