diff --git a/Makefile b/Makefile index 4fe905a..da9f55d 100644 --- a/Makefile +++ b/Makefile @@ -23,5 +23,5 @@ build: $(MAKE) -C frontend docker_build publish: - $(MAKE) -C backend publish_ebrains + $(MAKE) -C backend publish_ebrains $(MAKE) -C frontend publish_ebrains diff --git a/backend/Makefile b/backend/Makefile index 2fc9954..e7f1f30 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -52,10 +52,11 @@ run_dev: docker_build $(IMAGE_NAME):dev publish_ebrains: - docker build -t $(IMAGE_NAME):ebrains \ + docker build -t $(IMAGE_NAME):ebrains2 \ --build-arg http_proxy=http://bbpproxy.epfl.ch:80/ \ --build-arg https_proxy=http://bbpproxy.epfl.ch:80/ \ + --build-arg WS_URL=wss://bluenaas-single-cell-svc.apps.ebrains.eu \ --build-arg VERSION=$(VERSION) \ --build-arg NEURON_VERSION=$(NEURON_VERSION) \ . - docker push $(IMAGE_NAME):ebrains + docker push $(IMAGE_NAME):ebrains2 \ No newline at end of file diff --git a/frontend/Makefile b/frontend/Makefile index c84f24c..553c772 100644 --- a/frontend/Makefile +++ b/frontend/Makefile @@ -40,11 +40,11 @@ run_docker: docker_build $(IMAGE_NAME):dev publish_ebrains: - docker build -t $(IMAGE_NAME):ebrains \ - --build-arg http_proxy=http://bbpproxy.epfl.ch:80/ \ - --build-arg https_proxy=http://bbpproxy.epfl.ch:80/ \ - --build-arg WS_URL=wss://bluenaas-single-cell-svc.apps.ebrains.eu \ - --build-arg VERSION=$(VERSION) \ - --build-arg NEURON_VERSION=$(NEURON_VERSION) \ - . - docker push $(IMAGE_NAME):ebrains \ No newline at end of file + docker build -t $(IMAGE_NAME):ebrains2 \ + --build-arg http_proxy=http://bbpproxy.epfl.ch:80/ \ + --build-arg https_proxy=http://bbpproxy.epfl.ch:80/ \ + --build-arg WS_URL=wss://bluenaas-single-cell-svc.apps.ebrains.eu \ + --build-arg VERSION=$(VERSION) \ + --build-arg NEURON_VERSION=$(NEURON_VERSION) \ + . + docker push $(IMAGE_NAME):ebrains2 \ No newline at end of file