Skip to content

Commit c0baf67

Browse files
committed
Renamed git and dockerhub projects
1 parent 33fd3a8 commit c0baf67

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Lightweight docker image for running and packaging python-based AWS lambda code.
88

99
I needed a Docker-based environment in which to host AWS python lambda functions for the purpose of testing and building them... python-lambda works well under virtualenv for development, but build and deployment automation require a clean and reproducible environment to operate in. Our CI system already supported Docker as a containerization sytem, so it was the obvious choice.
1010

11-
In order to use this, you will have your project derive its own Dockerfile based on a base alpine-aws-python-lambda image corresponding to which version of Python you wish to run.
11+
In order to use this, you will have your project derive its own Dockerfile based on a base python-lambda image corresponding to which version of Python you wish to run.
1212

1313
# Usage
1414

@@ -65,12 +65,12 @@ The example Dockerfile uses _:latest_ in the FROM line, which is currently the s
6565
For instance, if you want to use Python version 2.7 change the first line of your Dockerfile from:
6666

6767
```
68-
FROM kilna/alpine-aws-python-lambda:latest
68+
FROM kilna/python-lambda:latest
6969
```
7070

7171
To:
7272

7373
```
74-
FROM kilna/alpine-aws-python-lambda:2.7
74+
FROM kilna/python-lambda:2.7
7575
```
7676

example/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
FROM kilna/alpine-aws-python-lambda:latest
1+
FROM kilna/python-lambda:latest
22
COPY . /lambda
33
RUN pip install -r requirements.txt

test/test_dockerfiles

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e -o pipefail
44

55
TMPDIR=${TMPDIR:-/tmp}
66
docker_dir="$PWD"
7-
base_image="alpine-aws-python-lambda"
7+
base_image="python-lambda"
88
example_image="example-lambda-image"
99

1010
header() { printf '=%.0s' {1..79}; echo; echo $@; printf '=%.0s' {1..79}; echo; }

0 commit comments

Comments
 (0)