diff --git a/.circleci/config.yml b/.circleci/config.yml index 76fc9f0..0671887 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,6 +35,9 @@ jobs: steps: - attach_workspace: at: ~/ + - run: + name: Build production image + command: DOCKER_IMAGE_NAME=test DOCKER_IMAGE_VERSION=latest make docker-image - run: name: Build docker images, install dependencies, warmup cache & start containers command: make up diff --git a/src/Kernel.php b/src/Kernel.php index e915c8b..39ab86f 100644 --- a/src/Kernel.php +++ b/src/Kernel.php @@ -11,6 +11,7 @@ class Kernel extends BaseKernel private ?string $projectDir = null; + // test2 public function getProjectDir(): string { return $this->projectDir ??= dirname(__DIR__);