From 21c0a8ef2ea3b65c0b28d91064b6166eec424a3a Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Tue, 7 Nov 2017 23:00:43 +0000 Subject: [PATCH] Updated the Dockerfile to use more modern constructs in a couple of places. - Legacy-Id: 14321 --- docker/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 625fa9a60..a3c587d73 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -20,7 +20,7 @@ # have *not* been downloaded. FROM debian:jessie -MAINTAINER Henrik Levkowetz +LABEL maintainer="Henrik Levkowetz " # Default django runserver port EXPOSE 8000 @@ -151,7 +151,8 @@ WORKDIR /usr/local/bin RUN ln -s /usr/local/phantomjs-1.9.8-linux-x86_64/bin/phantomjs . # idnits and dependencies -RUN wget -q --no-check-certificate -P /usr/local/bin/ https://tools.ietf.org/tools/idnits/idnits && chmod +x /usr/local/bin/idnits +ADD https://tools.ietf.org/tools/idnits/idnits /usr/local/bin/ +RUN chmod +rx /usr/local/bin/idnits ENV DDIR="/usr/local/share/datatracker" RUN mkdir -p $DDIR