summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2019-08-15 13:14:08 +0200
committerAnthon van der Neut <anthon@mnt.org>2019-08-15 13:14:08 +0200
commitc3ac95be03b0166b5910675f1d07c4d00db9dff8 (patch)
tree4f176d05d3ae63b68a50b7bbcf027d4fb2088de3 /Dockerfile
parentff8e03fe5542a9d7930a5720450c59bb9e9eaaf3 (diff)
downloadruamel.yaml-0.16.2.tar.gz
allow # in 1.2 URI's0.16.2
fixes issue #305 *When this change indeed resolves your problem, please **Close** this issue*. *(You can do so using the WorkFlow pull-down (close to the top right of this page))*
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile25
1 files changed, 0 insertions, 25 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index 4906b2e..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,25 +0,0 @@
-FROM quay.io/pypa/manylinux1_x86_64:latest
-
-MAINTAINER Anthon van der Neut <a.van.der.neut@ruamel.eu>
-
-RUN echo '[global]' > /etc/pip.conf
-RUN echo 'disable-pip-version-check = true' >> /etc/pip.conf
-
-RUN echo 'cd /src' > /usr/bin/makewheel
-RUN echo 'rm -f /tmp/*.whl' >> /usr/bin/makewheel
-RUN echo 'for PYVER in $*; do' >> /usr/bin/makewheel
-RUN echo ' for PYBIN in /opt/python/cp$PYVER*/bin/; do' >> /usr/bin/makewheel
-RUN echo ' echo "$PYBIN"' >> /usr/bin/makewheel
-RUN echo ' ${PYBIN}/pip install -Uq pip' >> /usr/bin/makewheel
-RUN echo ' ${PYBIN}/pip wheel . -w /tmp' >> /usr/bin/makewheel
-RUN echo ' done' >> /usr/bin/makewheel
-RUN echo 'done' >> /usr/bin/makewheel
-RUN echo '' >> /usr/bin/makewheel
-RUN echo 'for whl in /tmp/*.whl; do' >> /usr/bin/makewheel
-RUN echo ' echo processing "$whl"' >> /usr/bin/makewheel
-RUN echo ' auditwheel show "$whl"' >> /usr/bin/makewheel
-RUN echo ' auditwheel repair "$whl" -w /src/dist/' >> /usr/bin/makewheel
-RUN echo 'done' >> /usr/bin/makewheel
-RUN chmod 755 /usr/bin/makewheel
-
-CMD /usr/bin/makewheel 27 35 36 37