From 40c8ba1f3a29cb3ede09c45541268f02ec1934a9 Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sun, 11 Jul 2021 18:30:27 +0300 Subject: [PATCH] Is this all? Pretty much the same as the python3 image but based on the manylinux2014 image. The point is when building wheel (or binaries with Pyinstaller) it would be pretty portable to older distros. --- Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d8b87bf --- /dev/null +++ b/Dockerfile @@ -0,0 +1,15 @@ +# hadolint ignore=DL3006 +FROM quay.io/pypa/manylinux2014_x86_64 +ENV PATH /opt/python/cp36-cp36m/bin:/opt/rh/devtoolset-9/root/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin +# hadolint ignore=DL3013 +RUN pip install --no-cache-dir --progress-bar=off \ + docutils \ + pipenv \ + poetry \ + pygments \ + pyinstaller \ + tox \ + twine \ + wheel \ + && \ + rm -rf /tmp/* /var/tmp/* /root/.cache/* -- GitLab