diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96e58d8..58d24c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,12 +47,6 @@ jobs: - name: Check Mercure reachability run: curl -vkI --fail-with-body https://localhost/.well-known/mercure?topic=test - - - name: Check file permissions - run: ls -l bin/console - - - name: Check user inside container - run: whoami - name: Create test database run: docker compose exec -T php bin/console -e test doctrine:database:create diff --git a/Dockerfile b/Dockerfile index fbdc52d..76e7845 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,9 @@ 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" ]