docker – Diff between revs 8 and 13

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 8 Rev 13
Line 8... Line 8...
8 apt-get -y autoremove && \ 8 apt-get -y autoremove && \
9 apt-get clean 9 apt-get clean
Line 10... Line 10...
10   10  
11 # unzip required for unpacking Corrade and all the rest are libraries 11 # unzip required for unpacking Corrade and all the rest are libraries
-   12 RUN apt-get install -y \
12 RUN apt-get install -y \ 13 curl \
13 coreutils \ 14 coreutils \
14 bash \ 15 bash \
15 unzip \ 16 unzip \
16 libgssapi-krb5-2 \ 17 libgssapi-krb5-2 \
17 libssl1.1 \ 18 libssl1.1 \
Line 18... Line 19...
18 libicu67 19 libicu-dev
19   -  
20 # retrieve latest Corrade -  
21 ADD https://corrade.grimore.org/download/corrade/linux-x64/LATEST.zip /tmp/Corrade.zip -  
22   20  
-   21 # retrieve latest Corrade
23 # unpack the latest Corrade 22 WORKDIR /tmp
-   23 RUN curl -fsSSL https://corrade.grimore.org/download/corrade/linux-x64/LATEST.zip?q=$(cat /proc/sys/kernel/random/uuid | sed 's/[-]//g' | head -c 20; echo;) -o /tmp/Corrade.zip && \
Line 24... Line 24...
24 WORKDIR /tmp 24 unzip /tmp/Corrade.zip -d /corrade
25 RUN unzip /tmp/Corrade.zip -d /corrade 25 ADD https://corrade.grimore.org/download/corrade/linux-x64/LATEST.zip /tmp/Corrade.zip
Line 26... Line 26...
26   26