1
0
Fork 0
satnogs-db/Dockerfile

18 lines
417 B
Docker
Raw Normal View History

2015-04-25 04:05:23 -06:00
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 npm
2015-04-25 04:05:23 -06:00
RUN yum -y clean all
RUN npm install -g bower
2015-04-25 04:05:23 -06:00
COPY ./requirements/ /tmp/requirements/
RUN pip install -r /tmp/requirements/docker.txt
WORKDIR /app
COPY . /app
EXPOSE 80
CMD ["./docker/run-docker.sh"]