From 497011250239d640190dd67d4fb15c1820d94e42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nu=C5=A1a=20Puk=C5=A1i=C4=8D?= Date: Thu, 5 Dec 2024 19:30:23 +0100 Subject: [PATCH] Still debugging, part 3 --- .github/workflows/ci.yml | 3 +++ Dockerfile | 3 --- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58d24c6..1951266 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,6 +47,9 @@ jobs: - name: Check Mercure reachability run: curl -vkI --fail-with-body https://localhost/.well-known/mercure?topic=test + - + name: Make bin/console executable + run: chmod +x bin/console - name: Create test database run: docker compose exec -T php bin/console -e test doctrine:database:create diff --git a/Dockerfile b/Dockerfile index 76e7845..fbdc52d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,9 +67,6 @@ RUN set -eux; \ xdebug \ ; -RUN set -eux; \ - chmod +x bin/console; - COPY --link frankenphp/conf.d/20-app.dev.ini $PHP_INI_DIR/app.conf.d/ CMD [ "frankenphp", "run", "--config", "/etc/caddy/Caddyfile", "--watch" ]