diff --git a/Dockerfile b/Dockerfile index c762977..cbba80f 100755 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ MAINTAINER Jean-Marc Tremeaux # Download and install Play Framework ENV PLAY_VERSION 1.7.1 ENV DEBIAN_FRONTEND noninteractive -RUN apt-get update && apt-get -y install python && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get -y install python3 && rm -rf /var/lib/apt/lists/* RUN wget -nv -O /opt/play-${PLAY_VERSION}.zip https://github.com/playframework/play1/releases/download/${PLAY_VERSION}/play-${PLAY_VERSION}.zip \ && cd /opt \ && unzip /opt/play-${PLAY_VERSION}.zip \