-
Piotr Maślanka authoreda822844d
Dockerfile 325 B
FROM pypy:3.5
RUN apt-get update && \
apt-get install -y patchelf
RUN pypy3 -m pip install Cython pytest coverage pytest-cov auditwheel doctor-wheel twine
WORKDIR /tmp/compile
ADD . /tmp/compile/
RUN pypy3 setup.py install && \
chmod ugo+x /tmp/compile/tests/test.sh
CMD ["/tmp/compile/tests/test.sh"]