Skip to content

Commit 21c0a8e

Browse files
committed
Updated the Dockerfile to use more modern constructs in a couple of places.
- Legacy-Id: 14321
1 parent d6c1c96 commit 21c0a8e

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# have *not* been downloaded.
2121

2222
FROM debian:jessie
23-
MAINTAINER Henrik Levkowetz <henrik@levkowetz.com>
23+
LABEL maintainer="Henrik Levkowetz <henrik@levkowetz.com>"
2424

2525
# Default django runserver port
2626
EXPOSE 8000
@@ -151,7 +151,8 @@ WORKDIR /usr/local/bin
151151
RUN ln -s /usr/local/phantomjs-1.9.8-linux-x86_64/bin/phantomjs .
152152

153153
# idnits and dependencies
154-
RUN wget -q --no-check-certificate -P /usr/local/bin/ https://tools.ietf.org/tools/idnits/idnits && chmod +x /usr/local/bin/idnits
154+
ADD https://tools.ietf.org/tools/idnits/idnits /usr/local/bin/
155+
RUN chmod +rx /usr/local/bin/idnits
155156

156157
ENV DDIR="/usr/local/share/datatracker"
157158
RUN mkdir -p $DDIR

0 commit comments

Comments
 (0)