Skip to content

Instantly share code, notes, and snippets.

View ChechoCZ's full-sized avatar
🎯
Focusing

Sergio Cuadros ChechoCZ

🎯
Focusing
View GitHub Profile
@ChechoCZ
ChechoCZ / bitbucket-pipelines.yml
Created April 2, 2019 12:25
CI/CD for Bitbucket
image: php:7-fpm
pipelines:
branches:
master:
- step:
script:
- apt-get update && apt-get install -y python-dev zip libmcrypt-dev mysql-client libpng-dev
- docker-php-ext-install mcrypt && docker-php-ext-install pdo_mysql && docker-php-ext-install gd
- php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"