Skip to content

Commit b3bf83f

Browse files
committed
Fix: potential issue with "tar" (#283)
1 parent e13f4a1 commit b3bf83f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RUN apt update && \
66
apt install -y build-essential wget git cmake m4 libgmp-dev file && \
77
cd ~ && \
88
wget https://www.shoup.net/ntl/ntl-11.4.1.tar.gz && \
9-
tar xf ntl-11.4.1.tar.gz && \
9+
tar --no-same-owner -xf ntl-11.4.1.tar.gz && \
1010
cd ntl-11.4.1/src && \
1111
./configure SHARED=on NTL_GMP_LIP=on NTL_THREADS=on NTL_THREAD_BOOST=on && \
1212
make -j4 && \

0 commit comments

Comments
 (0)