mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 04:44:31 +00:00
19 lines
782 B
Docker
19 lines
782 B
Docker
FROM quay.io/pypa/manylinux1_x86_64:latest
|
|
|
|
RUN yum update -y \
|
|
&& yum install -y ccache \
|
|
&& yum clean all
|
|
|
|
RUN /opt/python/cp37-cp37m/bin/pip install cmake==3.13.3
|
|
ENV PATH=$PATH:/opt/python/cp37-cp37m/bin/
|
|
|
|
RUN curl --output /tmp/gcc-6.3.0-binutils-2.27-x86_64.tar.bz2 -L https://github.com/squeaky-pl/centos-devtools/releases/download/6.3/gcc-6.3.0-binutils-2.27-x86_64.tar.bz2 && \
|
|
echo "ca3e9f92411507018c839c8cc2b496f14956a49fcf6df0cdcb356de7161bcbc5 /tmp/gcc-6.3.0-binutils-2.27-x86_64.tar.bz2" | sha256sum --check --status && \
|
|
tar -C / -xj -f /tmp/gcc-6.3.0-binutils-2.27-x86_64.tar.bz2 && \
|
|
rm -rf /tmp/gcc-6.3.0-binutils-2.27-x86_64.tar.bz2
|
|
ENV CC=/opt/devtools-6.3/bin/gcc
|
|
ENV CXX=/opt/devtools-6.3/bin/g++
|
|
ENV CXXFLAGS=-static-libstdc++
|
|
|
|
WORKDIR /src
|