mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
19 lines
341 B
YAML
19 lines
341 B
YAML
image: dillonngo/docker-based-image:poc
|
|
|
|
stages:
|
|
- build
|
|
|
|
Build:
|
|
stage: build
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- docker info
|
|
# - npm install
|
|
# - gulp build
|
|
- composer install --no-dev
|
|
- vendor/bin/vapor deploy production --message="$CI_COMMIT_MESSAGE"
|
|
only:
|
|
- test
|
|
|