From de74ec5094754ea52eb8ba545542573b2f325d74 Mon Sep 17 00:00:00 2001 From: Christopher Hoskin Date: Fri, 18 May 2018 13:47:06 +0100 Subject: [PATCH] Change build and publish to use the GCR of one of my projects (hard code for now) --- services/filestore/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/services/filestore/Makefile b/services/filestore/Makefile index 3ebf4c4a34..89ac367ccb 100644 --- a/services/filestore/Makefile +++ b/services/filestore/Makefile @@ -34,10 +34,10 @@ test_acceptance: ci_clean # clear the database before each acceptance test run $(DOCKER_COMPOSE) run --rm test_acceptance -- ${MOCHA_ARGS} build: - docker build --pull --tag quay.io/sharelatex/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) . + docker build --pull --tag gcr.io/csh-gcdm-test/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) . publish: - docker push quay.io/sharelatex/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) + docker push gcr.io/csh-gcdm-test/$(PROJECT_NAME):$(BRANCH_NAME)-$(BUILD_NUMBER) ci: # On the CI server, we want to run our tests in the image that we @@ -59,4 +59,4 @@ ci_clean: .PHONY: all install compile clean test test_unit test_acceptance \ test_acceptance_start_service test_acceptance_stop_service \ - test_acceptance_run build publish ci ci_clean \ No newline at end of file + test_acceptance_run build publish ci ci_clean