Skip to content

Commit

Permalink
Bump to version 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brianz committed Aug 31, 2017
1 parent bf22973 commit 3dfcb53
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = verypossible/serverless
VERSION = 1.19.0
VERSION = 1.21.0

.PHONY: all py2 py3 shell

Expand Down
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# serverless

Automated Docker build for the Serverless framework

There are two `Dockerfile`s which are nearly the same. One uses Python 2 base image and the other
Python 3.

These images are build from Docker Cloud. The Serverless version to build is specified as a build
`ARG` (build argument) which is set using `--build-arg` during the `docker build` command. To pass
this argument, we need a Docker Cloud build hook which resides in `hooks/build`.

See the following for more information on Docker Cloud build hooks:

https://docs.docker.com/docker-cloud/builds/advanced/#source-repository--branch-clones
2 changes: 1 addition & 1 deletion hooks/build
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
docker build \
--build-arg SERVERLESS_VERSION=1.20.0 \
--build-arg SERVERLESS_VERSION=1.21.0 \
-t $IMAGE_NAME .

0 comments on commit 3dfcb53

Please sign in to comment.