Skip to content

Instantly share code, notes, and snippets.

View ajinkya-bhosale's full-sized avatar

ajinkya bhosale ajinkya-bhosale

View GitHub Profile
@ajinkya-bhosale
ajinkya-bhosale / Dockerfile
Created October 13, 2016 12:55 — forked from jmorton/Dockerfile
Install Python 3.4.2 + mod_wsgi on CentOS
FROM centos:centos6
MAINTAINER jmorton@usgs.gov
# Apache
RUN yum install -y httpd httpd-devel
RUN chkconfig httpd on
RUN apachectl start
# Dependencies
RUN yum groupinstall -y "Development tools"