Skip to content

Commit 038dcfc

Browse files
feat: Update py38 image to 3.8.5 and other updates
- Update poetry to 1.0.10 - Update tox to 3.18.0
1 parent 451fd81 commit 038dcfc

3 files changed

Lines changed: 17 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 3.5.0 (2020-07-23)
2+
3+
- Update `py38` image to Python 3.8.5
4+
- Update poetry to 1.0.10
5+
- Update tox to 3.18.0
6+
17
# 3.4.0 (2020-07-15)
28

39
- Update `py38` image to Python 3.8.4

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.8.4-slim-buster
1+
FROM python:3.8.5-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,9 +10,9 @@ 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.17.0 virtualenv==20.0.27
13+
RUN pip install pip==20.1.1 pre-commit==2.6.0 tox==3.18.0 virtualenv==20.0.27
1414

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

1818
WORKDIR /app

README.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ image.
99
## Usage
1010

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

1515
### Included dev-tools
1616

1717
- [pip](https://pip.pypa.io) 20.1.1
18-
- [poetry](https://poetry.eustace.io) 1.0.9
18+
- [poetry](https://poetry.eustace.io) 1.0.10
1919
- [pre-commit](https://pre-commit.com) 2.6.0
20-
- [tox](https://tox.readthedocs.io/) 3.17.0
20+
- [tox](https://tox.readthedocs.io/) 3.18.0
2121
- [virtualenv](https://virtualenv.pypa.io) 20.0.27
2222
- [curl](https://curl.haxx.se) 7.64.0
2323
- [git](https://git-scm.com) 2.20.1
@@ -37,6 +37,11 @@ other versions supported as well.
3737

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

40+
#### 3.5.0
41+
42+
- `py38` -> `python:3.8.5-slim-buster`
43+
- `py37` & `py36` uses same as in `3.4.0`
44+
4045
#### 3.4.0
4146

4247
- `py38` -> `python:3.8.4-slim-buster`

0 commit comments

Comments
 (0)