Skip to content

marcandreappel/docker-php-gitlab-ci

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP 7.4 & 8.0 Docker image for GitLab CI

Docker Cloud Build Status

Docker Image Size (tag) Docker Image Size (tag)

An optimized docker image for PHP 7.4 & 8.0 projects (like Laravel) and useful on GitLab CI for debugging and unit testing.

Usage

As the Docker image is automatically build on Docker Hub, you can use it right in your pipeline:

image: 'marcandreappel/docker-php-gitlab-ci:release-3' # or :release-8.0-3

cache:
  paths:
    - vendor/
    - node_modules/

before_script:
  - composer install

...