From 9e3eaae1d7a19d16d890b1b1bbcce1c894840725 Mon Sep 17 00:00:00 2001 From: holzi1005 Date: Fri, 29 Nov 2024 13:55:23 +0100 Subject: [PATCH] remove command fos_js_routing --- livekit_middleware_dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/livekit_middleware_dockerfile b/livekit_middleware_dockerfile index ee7ec89..9924c32 100644 --- a/livekit_middleware_dockerfile +++ b/livekit_middleware_dockerfile @@ -24,7 +24,6 @@ RUN apk --no-cache add \ RUN echo "#!/bin/sh" > /docker-entrypoint-init.d/02-symfony.sh \ && echo "php bin/console cache:clear" >> /docker-entrypoint-init.d/02-symfony.sh \ && echo "php bin/console cache:warmup" >> /docker-entrypoint-init.d/02-symfony.sh \ - && echo "php bin/console fos:js-routing:dump --format=json --target=assets/data/fos_routes.json" >> /docker-entrypoint-init.d/02-symfony.sh \ && chmod +x /docker-entrypoint-init.d/02-symfony.sh RUN --mount=type=secret,id=ARTIFACT_USER \ @@ -35,7 +34,6 @@ RUN --mount=type=secret,id=ARTIFACT_USER \ ARTIFACT_URL=$(cat /run/secrets/ARTIFACT_URL) \ && wget https://${ARTIFACT_USER}:${ARTIFACT_SECRET}@${ARTIFACT_URL}-${VERSION}.zip -O artifact.zip \ && unzip artifact.zip \ - && chown nobody assets/data/fos_routes.json \ && chown -R nobody public \ && chown -R nobody var \ && chmod -R 700 public \