1
0
Fork 0
satnogs-network/docker/dev

15 lines
445 B
Plaintext

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 rubygem-sass
RUN yum -y clean all
RUN pip install --upgrade pip
COPY ./requirements/ /tmp/requirements/
RUN pip install --no-cache-dir --ignore-installed -r /tmp/requirements/dev.txt
WORKDIR /app
EXPOSE 80
CMD ["./bin/run-docker.sh"]