From 07b6fa0e2e0de8c956e06c797e63d95dc49ecb09 Mon Sep 17 00:00:00 2001 From: iTrooz Date: Sun, 14 Dec 2025 15:02:01 +0100 Subject: [PATCH] build(web): add `BUILD_TYPE` arg to Dockerfile --- dist/web/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/web/Dockerfile b/dist/web/Dockerfile index a09820768..cd1baa928 100644 --- a/dist/web/Dockerfile +++ b/dist/web/Dockerfile @@ -50,6 +50,7 @@ ENV CCACHE_DIR=/cache/ccache RUN mkdir /build WORKDIR /build +ARG BUILD_TYPE=Release RUN --mount=type=cache,target=/cache \ --mount=type=bind,source=.,target=/imhex <