From c1e88f81acc636ac56ed49edfec2a95275b239a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Ma=CC=88der?= Date: Fri, 9 Jun 2017 08:38:55 +0200 Subject: [PATCH] Switch to python 3 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 264d4c8..48b8fca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:2.7-alpine +FROM python:3.6-alpine RUN apk add --no-cache \ bash \ @@ -14,7 +14,7 @@ RUN apk add --no-cache \ openssl-dev \ postgresql-dev \ wget \ - && pip install gunicorn==17.5 django-auth-ldap + && pip install gunicorn==17.5 WORKDIR /opt