mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
578 B
23 lines
578 B
FROM jumpserver/python:v3.6.1
|
|
LABEL MAINTAINER Jumpserver Team <ibuler@qq.com>
|
|
|
|
|
|
COPY . /opt/jumpserver
|
|
WORKDIR /opt/jumpserver
|
|
|
|
RUN yum -y install epel-release && yum clean all -y
|
|
RUN cd requirements && yum -y install $(cat rpm_requirements.txt) && yum clean all -y
|
|
RUN cd requirements && pip install -r requirements.txt
|
|
|
|
RUN rm -f data/db.sqlite3
|
|
RUN rm -r .git
|
|
RUN rm -f config.py
|
|
|
|
VOLUME /opt/jumpserver/data
|
|
VOLUME /opt/jumpserver/logs
|
|
|
|
RUN cp config_docker.py config.py
|
|
|
|
EXPOSE 8080
|
|
CMD cd utils && sh make_migrations.sh && sh init_db.sh && cd .. && python run_server.py
|