From 9ba2fa44aaa00744fd01ffbc41087786517ab2d3 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Wed, 21 Feb 2024 21:28:56 -0800 Subject: [PATCH] (fix) admin ui allow custom ui theme --- Dockerfile | 3 +++ Dockerfile.database | 3 +++ 2 files changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index b9dcc1f2c..bcb4ee692 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,6 +20,9 @@ RUN pip install --upgrade pip && \ # Copy the current directory contents into the container at /app COPY . . +# Build Admin UI +RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh + # Build the package RUN rm -rf dist/* && python -m build diff --git a/Dockerfile.database b/Dockerfile.database index 6f068b3f7..1206aba88 100644 --- a/Dockerfile.database +++ b/Dockerfile.database @@ -20,6 +20,9 @@ RUN pip install --upgrade pip && \ # Copy the current directory contents into the container at /app COPY . . +# Build Admin UI +RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh + # Build the package RUN rm -rf dist/* && python -m build