docker – Diff between revs 13 and 14
?pathlinks?
Rev 13 | Rev 14 | |||
---|---|---|---|---|
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 \ |
- | ||
13 | curl \ |
12 | RUN apt-get install -y \ |
|
14 | coreutils \ |
13 | coreutils \ |
|
15 | bash \ |
14 | bash \ |
|
16 | unzip \ |
15 | unzip \ |
|
17 | libgssapi-krb5-2 \ |
16 | libgssapi-krb5-2 \ |
|
18 | libssl1.1 \ |
17 | libssl1.1 \ |
|
- | 18 | libicu67 |
||
Line 19... | Line 19... | |||
19 | libicu-dev |
19 | |
|
20 | |
20 | |
|
21 | # retrieve latest Corrade |
21 | # retrieve latest Corrade |
|
22 | WORKDIR /tmp |
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 23... | |||
24 | unzip /tmp/Corrade.zip -d /corrade |
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 && \ |
|
25 | ADD https://corrade.grimore.org/download/corrade/linux-x64/LATEST.zip /tmp/Corrade.zip |
24 | unzip /tmp/Corrade.zip -d /corrade |
|
Line 26... | Line 25... | |||
26 | |
25 | |