File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed
Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -31,3 +31,4 @@ deploy:
3131 script : docker/deploy.sh
3232 on :
3333 branch : master
34+ repo : pypa/manylinux
Original file line number Diff line number Diff line change 55
66docker/build_scripts/prefetch.sh openssl curl
77if [ $PLATFORM == x86_64 ]; then
8- docker build --rm -t quay.io/pypa/manylinux2010_centos-6.9 -no-vsyscall -f docker/glibc/Dockerfile docker/glibc/
8+ docker build --rm -t quay.io/pypa/manylinux2010_centos-6-no-vsyscall -f docker/glibc/Dockerfile docker/glibc/
99fi
1010docker build --rm -t quay.io/pypa/manylinux2010_$PLATFORM :$TRAVIS_COMMIT -f docker/Dockerfile-$PLATFORM docker/
1111docker system prune -f
Original file line number Diff line number Diff line change 11# See docker/glibc/
2- FROM quay.io/pypa/manylinux2010_centos-6.9 -no-vsyscall
2+ FROM quay.io/pypa/manylinux2010_centos-6-no-vsyscall
33LABEL maintainer="The ManyLinux project"
44
55ENV LC_ALL en_US.UTF-8
Original file line number Diff line number Diff line change @@ -185,10 +185,9 @@ find /opt/_internal -type f -print0 \
185185# We do not need the Python test suites, or indeed the precompiled .pyc and
186186# .pyo files. Partially cribbed from:
187187# https://github.com/docker-library/python/blob/master/3.4/slim/Dockerfile
188- find /opt/_internal \
188+ find /opt/_internal -depth \
189189 \( -type d -a -name test -o -name tests \) \
190- -o \( -type f -a -name ' *.pyc' -o -name ' *.pyo' \) \
191- -print0 | xargs -0 rm -f
190+ -o \( -type f -a -name ' *.pyc' -o -name ' *.pyo' \) | xargs rm -rf
192191
193192for PYTHON in /opt/python/* /bin/python; do
194193 # Smoke test to make sure that our Pythons work, and do indeed detect as
Original file line number Diff line number Diff line change 1- FROM centos:6.9 as centos-with-vsyscall
1+ FROM centos:6 as centos-with-vsyscall
22
33COPY ./build_scripts /build_scripts
44RUN bash /build_scripts/rebuild-glibc-without-vsyscall.sh
55
6- FROM centos:6.9
6+ FROM centos:6
77LABEL maintainer="The Manylinux project"
88
99COPY --from=centos-with-vsyscall /rpms /rpms
You can’t perform that action at this time.
0 commit comments