You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docker/base/Dockerfile
+4-62Lines changed: 4 additions & 62 deletions
Original file line number
Diff line number
Diff line change
@@ -12,9 +12,6 @@ ENV XZ_VERSION 5.2.2
12
12
# we don't use our bundled 7za because it is better to build for specific platform - not generic
13
13
ENV USE_SYSTEM_7ZA true
14
14
15
-
# we don't use our bundled fpm because it is better to build ruby & tools for specific platform - not generic. And easy to maintain (update ruby and so on).
16
-
ENV USE_SYSTEM_FPM true
17
-
18
15
ENV DEBUG_COLORS true
19
16
ENV FORCE_COLOR true
20
17
@@ -23,7 +20,9 @@ RUN apt-get update -y && \
23
20
apt-get clean && \
24
21
rm -rf /var/lib/apt/lists/* && \
25
22
curl -L http://tukaani.org/xz/xz-$XZ_VERSION.tar.xz | tar -xJ && cd xz-$XZ_VERSION && ./configure && make && make install && cd .. && rm -rf xz-$XZ_VERSION && ldconfig && \
26
-
mkdir -p /tmp/7z && curl -L http://downloads.sourceforge.net/project/p7zip/p7zip/15.14.1/p7zip_15.14.1_src_all.tar.bz2 | tar -xj -C /tmp/7z --strip-components 1 && cd /tmp/7z && cp makefile.linux_amd64_asm makefile.machine && make && make install && rm -rf /tmp/7z
23
+
mkdir -p /tmp/7z && curl -L http://downloads.sourceforge.net/project/p7zip/p7zip/16.02/p7zip_16.02_src_all.tar.bz2 | tar -xj -C /tmp/7z --strip-components 1 && cd /tmp/7z && cp makefile.linux_amd64_asm makefile.machine && make && make install && rm -rf /tmp/7z
0 commit comments