Skip to content

Commit d99a2c4

Browse files
feat: Update py38 base image and other updates
- Update pip to 20.2.3 - Update pre-commit to 2.7.1 - Update tox to 3.20.0 - Update virtualenv to 20.0.31
1 parent 038dcfc commit d99a2c4

3 files changed

Lines changed: 23 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# 3.6.0 (2020-09-25)
2+
3+
- Update `py38` image to Python 3.8.6
4+
- Update `py37` image to Python 3.7.9
5+
- Update `py36` image to Python 3.6.12
6+
- Update pip to 20.2.3
7+
- Update pre-commit to 2.7.1
8+
- Update tox to 3.20.0
9+
- Update virtualenv to 20.0.31
10+
111
# 3.5.0 (2020-07-23)
212

313
- Update `py38` image to Python 3.8.5

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.5-slim-buster
1+
FROM python:3.8.6-slim-buster
22

33
LABEL maintainer="Igor Davydenko <iam@igordavydenko.com>"
44
LABEL description="Add poetry, pre-commit, and other dev-tools to official Python slim Docker image."
@@ -10,7 +10,7 @@ RUN apt update -qq \
1010

1111
ENV PATH="/root/.local/bin:/root/.poetry/bin:${PATH}"
1212

13-
RUN pip install pip==20.1.1 pre-commit==2.6.0 tox==3.18.0 virtualenv==20.0.27
13+
RUN pip install pip==20.2.3 pre-commit==2.7.1 tox==3.20.0 virtualenv==20.0.31
1414

1515
ENV POETRY_VERSION=1.0.10
1616
RUN curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python

README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ image.
99
## Usage
1010

1111
```dockerfile
12-
FROM playpauseandstop/docker-python:3.5.0
12+
FROM playpauseandstop/docker-python:3.6.0
1313
```
1414

1515
### Included dev-tools
1616

17-
- [pip](https://pip.pypa.io) 20.1.1
17+
- [pip](https://pip.pypa.io) 20.2.3
1818
- [poetry](https://poetry.eustace.io) 1.0.10
19-
- [pre-commit](https://pre-commit.com) 2.6.0
20-
- [tox](https://tox.readthedocs.io/) 3.18.0
21-
- [virtualenv](https://virtualenv.pypa.io) 20.0.27
19+
- [pre-commit](https://pre-commit.com) 2.7.1
20+
- [tox](https://tox.readthedocs.io/) 3.20.0
21+
- [virtualenv](https://virtualenv.pypa.io) 20.0.31
2222
- [curl](https://curl.haxx.se) 7.64.0
2323
- [git](https://git-scm.com) 2.20.1
2424
- [locales](https://packages.debian.org/stretch/locales) &
@@ -37,6 +37,12 @@ other versions supported as well.
3737

3838
List of supported Python versions are (`<PY_VERSION>` -> base Docker image):
3939

40+
#### 3.6.0
41+
42+
- `py38` -> `python:3.8.6-slim-buster`
43+
- `py37` -> `python:3.7.9-slim-buster`
44+
- `py36` -> `python:3.6.12-slim-buster`
45+
4046
#### 3.5.0
4147

4248
- `py38` -> `python:3.8.5-slim-buster`

0 commit comments

Comments
 (0)