From b3ca520a7a886187fed3e10159ddb32b601ec349 2017-04-29 10:21:25 From: Sachi King Date: 2017-04-29 10:21:25 Subject: [PATCH] Lets try to automate this build a bit This doesn't rebuild on subproject changes... this is something that will need fixed. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..fd941a7ad1e4dcbfe5997f64785b8a1109641460 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,10 @@ +build_image: + image: docker:git + services: + - docker:dind + script: + - docker build -f docker/Dockerfile -t asia.gcr.io/linuxconfsydney/symposion_app . + - docker login -u _json_key -p "$GOOGLE_KEY" https://asia.gcr.io + - docker push asia.gcr.io/linuxconfsydney/symposion_app:latest + only: + - master