File tree 1 file changed +8
-4
lines changed
1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,9 @@ ARG DAVIX_RELEASE=devel
5
5
6
6
RUN \
7
7
apt-get update && \
8
- apt-get install -y --no-install-recommends \
8
+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
9
9
git ca-certificates cmake g++ build-essential \
10
10
libxml2-dev libssl-dev uuid-dev python && \
11
- rm -rf /var/lib/apt/lists/* && \
12
11
git clone --branch "$DAVIX_RELEASE" https://github.com/cern-fts/davix.git && \
13
12
cd davix && \
14
13
git submodule update --recursive --init && \
17
16
make && \
18
17
make install && \
19
18
ldconfig && \
20
- apt-get purge -y --auto-remove git cmake g++ build-essential \
21
- uuid-dev python && \
19
+ DEBIAN_FRONTEND=noninteractive apt-get remove --purge -y \
20
+ git cmake g++ libxml2-dev libssl-dev build-essential uuid-dev python && \
21
+ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
22
+ libxml2 && \
23
+ DEBIAN_FRONTEND=noninteractive apt-get autoremove -y && \
24
+ apt-get clean -y && \
25
+ rm -rf /var/lib/apt/lists/* && \
22
26
cd ../.. && \
23
27
rm -rf davix
24
28
COPY *.sh /usr/local/bin/
You can’t perform that action at this time.
0 commit comments