Docker CI build #12

Merged
skobkin merged 11 commits from feature_docker_ci_build into master 2022-07-11 00:39:39 +00:00
1 changed files with 16 additions and 0 deletions
Showing only changes of commit 6f6bd4e34f - Show all commits

16
.drone.yml Normal file
View File

@ -0,0 +1,16 @@
kind: pipeline
type: docker
name: build-app
steps:
- name: build-deps
image: 'composer:2.3'
environment:
APP_ENV: dev
commands:
- composer install --no-progress --no-interaction --optimize-autoloader
- bin/console about
- 'bin/console lint:container'
- 'bin/console lint:twig'
- 'bin/console lint:container'
- 'bin/console lint:yaml'