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:
31
31
script : docker/deploy.sh
32
32
on :
33
33
branch : master
34
+ repo : pypa/manylinux
Original file line number Diff line number Diff line change 5
5
6
6
docker/build_scripts/prefetch.sh openssl curl
7
7
if [ $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/
9
9
fi
10
10
docker build --rm -t quay.io/pypa/manylinux2010_$PLATFORM :$TRAVIS_COMMIT -f docker/Dockerfile-$PLATFORM docker/
11
11
docker system prune -f
Original file line number Diff line number Diff line change 1
1
# See docker/glibc/
2
- FROM quay.io/pypa/manylinux2010_centos-6.9 -no-vsyscall
2
+ FROM quay.io/pypa/manylinux2010_centos-6-no-vsyscall
3
3
LABEL maintainer="The ManyLinux project"
4
4
5
5
ENV 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 \
185
185
# We do not need the Python test suites, or indeed the precompiled .pyc and
186
186
# .pyo files. Partially cribbed from:
187
187
# https://github.com/docker-library/python/blob/master/3.4/slim/Dockerfile
188
- find /opt/_internal \
188
+ find /opt/_internal -depth \
189
189
\( -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
192
191
193
192
for PYTHON in /opt/python/* /bin/python; do
194
193
# 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
2
2
3
3
COPY ./build_scripts /build_scripts
4
4
RUN bash /build_scripts/rebuild-glibc-without-vsyscall.sh
5
5
6
- FROM centos:6.9
6
+ FROM centos:6
7
7
LABEL maintainer="The Manylinux project"
8
8
9
9
COPY --from=centos-with-vsyscall /rpms /rpms
You can’t perform that action at this time.
0 commit comments