docker – Diff between revs 19 and 20

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 19 Rev 20
Line 18... Line 18...
18 libicu67 \ 18 libicu67 \
19 curl 19 curl
Line 20... Line 20...
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 && \ 23 RUN curl -fsSSL https://corrade.grimore.org/download/corrade/linux-x64/Corrade-12.0.389.402-linux-x64.zip -o /tmp/Corrade.zip && \
Line 24... Line 24...
24 unzip /tmp/Corrade.zip -d /corrade 24 unzip /tmp/Corrade.zip -d /corrade
25   25  
Line 26... Line 26...
26 # open port declaration, in order: Nucleus, HTTP, MQTT, TCP, UDP and WebSockets 26 # open port declaration, in order: Nucleus, HTTP, MQTT, TCP, UDP and WebSockets
27 EXPOSE 54377 8080 1883 8085 8086 8088 27 EXPOSE 54377 8080 1883 8085 8086 8088
Line 28... Line 28...
28   28  
29 # add filesystem requirements -  
30 ADD rootfs / 29 # add filesystem requirements
31   -