1
0
Fork 0
satnogs-db/docker/dev

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