From f3fafae12613bd99261aa7e75edb1b41a77b6e6f Mon Sep 17 00:00:00 2001 From: Adar Nimrod Date: Sun, 10 Jun 2018 07:15:20 +0300 Subject: [PATCH] Python 3.6 image with latest pip, pipenv and tox, headers and compilers. --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..ff34829 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +FROM python:3.6-slim-stretch +RUN apt-get update && \ + DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ + build-essential \ + git \ + libffi-dev \ + libpq-dev \ + libssl-dev \ + zlib1g-dev \ + && \ + pip install --no-cache-dir --update pip tox pipenv | cat && \ + rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* /var/cache/apt/archives/* /root/.cache/* -- GitLab