From ca6bb18030fd6be19b575d180ecd38fd2cb0364d Mon Sep 17 00:00:00 2001 From: Brian Zambrano Date: Thu, 26 Jul 2018 14:52:51 -0600 Subject: [PATCH] Bump to 1.28.0 --- Makefile | 11 +++++------ hooks/build | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 035a6c4..d4e4a32 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,5 @@ NAME = verypossible/serverless -VERSION = 1.27.2 -SERVERLESS_VERSION = $(VERSION) +SERVERLESS_VERSION = 1.28.0 YARN_VERSION = 1.6.0 .PHONY: all py2 py3 shell @@ -10,7 +9,7 @@ all : py2 py3 py2 : docker build \ - -t $(NAME):$(VERSION)-python2 \ + -t $(NAME):$(SERVERLESS_VERSION)-python2 \ -f Dockerfile-python2 \ --build-arg SERVERLESS_VERSION=$(SERVERLESS_VERSION) \ --build-arg YARN_VERSION=$(YARN_VERSION) \ @@ -18,14 +17,14 @@ py2 : py3 : docker build \ - -t $(NAME):$(VERSION) \ + -t $(NAME):$(SERVERLESS_VERSION) \ -f Dockerfile \ --build-arg SERVERLESS_VERSION=$(SERVERLESS_VERSION) \ --build-arg YARN_VERSION=$(YARN_VERSION) \ . py2-shell : - docker run --rm -it $(NAME):$(VERSION)-python2 bash + docker run --rm -it $(NAME):$(SERVERLESS_VERSION)-python2 bash py3-shell : - docker run --rm -it $(NAME):$(VERSION) bash + docker run --rm -it $(NAME):$(SERVERLESS_VERSION) bash diff --git a/hooks/build b/hooks/build index 0bae43a..c95528c 100755 --- a/hooks/build +++ b/hooks/build @@ -10,7 +10,7 @@ fi echo "Using $DOCKERFILE for build" docker build \ - --build-arg SERVERLESS_VERSION=1.27.2 \ + --build-arg SERVERLESS_VERSION=1.28.0 \ --build-arg YARN_VERSION=1.6.0 \ -f $DOCKERFILE \ -t $IMAGE_NAME .