Switch to python 3

This commit is contained in:
Christian Mäder 2017-06-09 08:38:55 +02:00
parent 128c63de2b
commit c1e88f81ac
No known key found for this signature in database
GPG Key ID: 92FFD0A711F196BB
1 changed files with 2 additions and 2 deletions

View File

@ -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