-
-
Save rgcloud/23aabfbdf51fe32f3662575e30190325 to your computer and use it in GitHub Desktop.
centos 6 + python 2.6 Dockerfile https://hub.docker.com/r/mjhea0/centos-6-python-2.6/
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
| # base image | |
| FROM centos:6 | |
| # install epel | |
| RUN rpm --import http://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-6 \ | |
| && yum install -y epel-release | |
| # install python | |
| RUN yum install -y \ | |
| git \ | |
| python-pep8 \ | |
| python-setupdocs \ | |
| python-setuptools \ | |
| rpm-build \ | |
| python-pip \ | |
| postgresql \ | |
| postgresql-devel \ | |
| python-cffi \ | |
| libffi-devel \ | |
| gcc \ | |
| python-devel \ | |
| openssl-devel \ | |
| python-psycopg2 \ | |
| && yum clean all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment