From e36df4d3617fa5dac0b76224542145759f19a15f Mon Sep 17 00:00:00 2001 From: "Ehsan.Asadi" Date: Tue, 30 Dec 2025 16:25:35 +0330 Subject: [PATCH] fix(docker): add unzip package for Reflex frontend build Reflex requires 'unzip' to download and extract Bun runtime during frontend initialization. Without it, the build fails with: SystemPackageMissingError: System package 'unzip' is missing This fix ensures Reflex can properly initialize frontend dependencies. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 910e8ab..32034d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ curl \ gnupg \ ca-certificates \ + unzip \ && rm -rf /var/lib/apt/lists/* # Install Node.js (required for Reflex)