From c99ed5f0a59caf20e2e9de12ddc00875e1391b46 Mon Sep 17 00:00:00 2001 From: Eliot Date: Thu, 16 Jan 2025 14:44:24 +0100 Subject: [PATCH] ci(docker): clean web sources after build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 69f1f38..d5af771 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,8 +33,8 @@ RUN npm run build WORKDIR /app RUN mkdir -p /app/dashboard_build && \ mv /app/web/build/* /app/dashboard_build - - +# Delete the web directory +RUN rm -rf /app/web # Default environment variables ENV PYTHONPATH=/app \