Skip to content

Instantly share code, notes, and snippets.

@smetj
Created February 16, 2016 14:51
Show Gist options
  • Select an option

  • Save smetj/a7f8499e75c2855da417 to your computer and use it in GitHub Desktop.

Select an option

Save smetj/a7f8499e75c2855da417 to your computer and use it in GitHub Desktop.
Docker file to build wishbone development
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