Last active
February 20, 2019 08:17
-
-
Save jaceju/4b32b55e69f690561642d173910ffcad to your computer and use it in GitHub Desktop.
Revisions
-
jaceju revised this gist
Feb 20, 2019 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ install-deps: image: our-registry:5000/php:7.2 stage: prepare script: - composer --no-dev install --no-scripts -
jaceju created this gist
Feb 20, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ install-deps: image: php:7.2-alpine stage: prepare script: - composer --no-dev install --no-scripts artifacts: expire_in: 1 week paths: - vendor/ deploy: image: our-registry:5000/deploy dependencies: - install-deps stage: deploy script: - /script/deploy-script