Skip to content

Commit 135ca8d

Browse files
committed
Add flit
1 parent b2a8a38 commit 135ca8d

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,21 @@ RUN . /etc/os-release && \
77
apt-get update && \
88
apt-get install -y \
99
python-pip \
10+
python-setuptools \
1011
python3-pip \
1112
python3-distutils \
13+
python3-setuptools \
1214
\
1315
python2.? \
1416
python2.?-dev \
1517
python3.? \
1618
python3.?-dev \
1719
python3.?-venv \
1820
&& \
19-
pip3 install tox virtualenv && \
21+
pip3 install \
22+
flit \
23+
tox \
24+
virtualenv \
25+
&& \
2026
apt-get --purge autoremove -y gnupg && \
2127
rm -rf /var/cache/apt/lists

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,8 @@ The image is based on the [buildpack-deps image](https://hub.docker.com/_/buildp
2020
* Python 3.8
2121
* Python 3.9
2222

23-
This includes the header packages (`pythonx.y-dev`), venv, and distutils where applicable. In addition, tox and virtualenv are pre-installed.
23+
The following additional Python development tools are installed:
24+
25+
* [flit](https://flit.readthedocs.io/)
26+
* [tox](https://tox.readthedocs.io)
27+
* [virtualenv](https://virtualenv.pypa.io/)

0 commit comments

Comments
 (0)