Browse Source

Still debugging, part 3

imwald
Nuša Pukšič 1 year ago
parent
commit
4970112502
  1. 3
      .github/workflows/ci.yml
  2. 3
      Dockerfile

3
.github/workflows/ci.yml

@ -47,6 +47,9 @@ jobs:
- -
name: Check Mercure reachability name: Check Mercure reachability
run: curl -vkI --fail-with-body https://localhost/.well-known/mercure?topic=test 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 name: Create test database
run: docker compose exec -T php bin/console -e test doctrine:database:create run: docker compose exec -T php bin/console -e test doctrine:database:create

3
Dockerfile

@ -67,9 +67,6 @@ RUN set -eux; \
xdebug \ xdebug \
; ;
RUN set -eux; \
chmod +x bin/console;
COPY --link frankenphp/conf.d/20-app.dev.ini $PHP_INI_DIR/app.conf.d/ COPY --link frankenphp/conf.d/20-app.dev.ini $PHP_INI_DIR/app.conf.d/
CMD [ "frankenphp", "run", "--config", "/etc/caddy/Caddyfile", "--watch" ] CMD [ "frankenphp", "run", "--config", "/etc/caddy/Caddyfile", "--watch" ]

Loading…
Cancel
Save