Optimization of entrypoint (#39)
Some checks failed
Test / integration (push) Has been cancelled
Build / docker (push) Has been cancelled

This commit is contained in:
2025-05-11 09:39:25 +02:00
committed by GitHub
parent 258580b107
commit 091ebc6b09
3 changed files with 99 additions and 97 deletions

View File

@@ -6,6 +6,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Build the Docker image
- name: Build Docker Image
run: |
docker buildx build -f src/docker/Dockerfile --build-arg phpVersion=8.4 -t ${{ vars.BUILDKIT_IMAGE }}:latest --load .
- name: Verify Docker images
run: |
docker images
- name: Create Laravel project
run: |
composer create-project laravel/laravel laravel