Created
February 16, 2016 14:51
-
-
Save smetj/a7f8499e75c2855da417 to your computer and use it in GitHub Desktop.
Docker file to build wishbone development
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM centos:centos7 | |
| MAINTAINER Jelle Smet | |
| EXPOSE 19283 | |
| RUN yum install -y wget automake autoconf make file libtool gcc gcc-c++ python-dev bzip2 | |
| RUN wget -qO- https://bitbucket.org/squeaky/portable-pypy/downloads/pypy-4.0.1-linux_x86_64-portable.tar.bz2|tar xjv -C /opt | |
| RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py | |
| RUN /opt/pypy-4.0.1-linux_x86_64-portable/bin/pypy /tmp/get-pip.py | |
| RUN /opt/pypy-4.0.1-linux_x86_64-portable/bin/pip install cython | |
| RUN /opt/pypy-4.0.1-linux_x86_64-portable/bin/pip install --process-dependency-link https://github.com/smetj/wishbone/archive/develop.zip | |
| ENTRYPOINT ["/opt/pypy-4.0.1-linux_x86_64-portable/bin/wishbone"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment