(fix) admin ui allow custom ui theme

This commit is contained in:
ishaan-jaff 2024-02-21 21:28:56 -08:00
parent da5d71cfbf
commit 9ba2fa44aa
2 changed files with 6 additions and 0 deletions

View file

@ -20,6 +20,9 @@ RUN pip install --upgrade pip && \
# Copy the current directory contents into the container at /app # Copy the current directory contents into the container at /app
COPY . . COPY . .
# Build Admin UI
RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh
# Build the package # Build the package
RUN rm -rf dist/* && python -m build RUN rm -rf dist/* && python -m build

View file

@ -20,6 +20,9 @@ RUN pip install --upgrade pip && \
# Copy the current directory contents into the container at /app # Copy the current directory contents into the container at /app
COPY . . COPY . .
# Build Admin UI
RUN chmod +x build_admin_ui.sh && ./build_admin_ui.sh
# Build the package # Build the package
RUN rm -rf dist/* && python -m build RUN rm -rf dist/* && python -m build