diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000000000000000000000000000000000000..ff34829fbd4516da1ae6153c1814fa78dfc85b76 --- /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/*