Skip to content

Commit e859f2f

Browse files
committed
minor readme update
1 parent 24cf8a9 commit e859f2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

python/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ An example Lambda handler is located at [lambda/lambda_function.py](lambda/lambd
1818

1919
Now, use the [Dockerfile](Dockerfile) can be used to create a new Docker image based on any version of GeoLambda with any version of Python by providing the versions as build arguments to `docker run`. This will install the specified version of Python along with any Python packages provided in [requirements.txt](requirements.txt).
2020

21-
$ docker build . --build-arg VERSION=1.1.0 --build-arg PYVERSION=3.6.1 -t <myimage>:latest
21+
$ VERSION=1.1.0
22+
$ docker build . --build-arg VERSION=${VERSION} --build-arg PYVERSION=3.6.1 -t <myimage>:latest
2223

2324
If not provided, `VERSION` (the version of GeoLambda to use) will default to `latest` and `PYVERSION` (Python version) will default to `3.6.1`.
2425

0 commit comments

Comments
 (0)