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