1# Based upon the manylinux image from pypa
2FROM quay.io/pypa/manylinux1_x86_64
3
4COPY docker /opt/sweep/bin
5COPY libsweep /opt/sweep/libsweep
6COPY jsweep /opt/sweep/jsweep
7
8ENV PATH /opt/sweep/bin:$PATH
9
10RUN install-yum.sh
11
12CMD build.sh
13