satnogs-db/Dockerfile
2015-08-26 14:02:09 +03:00

17 lines
388 B
Docker

FROM centos:7
RUN yum makecache
RUN yum -y install epel-release
RUN yum -y install python python-pip python-devel git gcc libjpeg-turbo-devel \
libxml2-devel libxslt-devel mysql-devel mysql
RUN yum -y clean all
COPY ./requirements/ /tmp/requirements/
RUN pip install -r /tmp/requirements/docker.txt
WORKDIR /app
COPY . /app
EXPOSE 80
CMD ["./docker/run-docker.sh"]