jumpserver/Dockerfile

96 lines
3.4 KiB
Docker
Raw Normal View History

2021-12-27 07:00:47 +00:00
FROM python:3.8-slim
2022-04-22 05:44:39 +00:00
MAINTAINER JumpServer Team <ibuler@qq.com>
2018-11-13 07:57:44 +00:00
2022-03-15 05:06:04 +00:00
ARG BUILD_DEPENDENCIES=" \
g++ \
make \
pkg-config"
ARG DEPENDENCIES=" \
default-libmysqlclient-dev \
freetds-dev \
libpq-dev \
libffi-dev \
libldap2-dev \
libsasl2-dev \
libxml2-dev \
libxmlsec1-dev \
libxmlsec1-openssl \
libaio-dev \
2022-08-20 11:15:51 +00:00
openssh-client \
2022-03-15 05:06:04 +00:00
sshpass"
ARG TOOLS=" \
curl \
default-mysql-client \
iproute2 \
iputils-ping \
locales \
procps \
redis-tools \
telnet \
vim \
unzip \
2022-03-15 05:06:04 +00:00
wget"
RUN sed -i 's@http://.*.debian.org@http://mirrors.ustc.edu.cn@g' /etc/apt/sources.list \
&& apt-get update \
&& apt-get -y install --no-install-recommends ${BUILD_DEPENDENCIES} \
&& apt-get -y install --no-install-recommends ${DEPENDENCIES} \
&& apt-get -y install --no-install-recommends ${TOOLS} \
&& localedef -c -f UTF-8 -i zh_CN zh_CN.UTF-8 \
2021-09-01 03:57:18 +00:00
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
2022-03-15 05:06:04 +00:00
&& mkdir -p /root/.ssh/ \
&& echo "Host *\n\tStrictHostKeyChecking no\n\tUserKnownHostsFile /dev/null" > /root/.ssh/config \
2022-03-15 05:06:04 +00:00
&& sed -i "s@# alias l@alias l@g" ~/.bashrc \
&& echo "set mouse-=a" > ~/.vimrc \
&& echo "no" | dpkg-reconfigure dash \
&& rm -rf /var/lib/apt/lists/*
2018-11-13 07:57:44 +00:00
ARG TARGETARCH
ARG ORACLE_LIB_MAJOR=19
ARG ORACLE_LIB_MINOR=10
ENV ORACLE_FILE="instantclient-basiclite-linux.${TARGETARCH:-amd64}-${ORACLE_LIB_MAJOR}.${ORACLE_LIB_MINOR}.0.0.0dbru.zip"
2022-04-22 05:44:39 +00:00
RUN mkdir -p /opt/oracle/ \
&& cd /opt/oracle/ \
&& wget https://download.jumpserver.org/files/oracle/${ORACLE_FILE} \
&& unzip instantclient-basiclite-linux.${TARGETARCH-amd64}-19.10.0.0.0dbru.zip \
&& mv instantclient_${ORACLE_LIB_MAJOR}_${ORACLE_LIB_MINOR} instantclient \
&& echo "/opt/oracle/instantclient" > /etc/ld.so.conf.d/oracle-instantclient.conf \
2021-09-17 08:14:15 +00:00
&& ldconfig \
&& rm -f ${ORACLE_FILE}
2022-04-22 05:44:39 +00:00
WORKDIR /tmp/build
COPY ./requirements ./requirements
2022-03-15 05:06:04 +00:00
2022-08-17 11:13:29 +00:00
ARG PIP_MIRROR=https://pypi.douban.com/simple
2022-04-22 05:44:39 +00:00
ENV PIP_MIRROR=$PIP_MIRROR
2022-08-17 11:13:29 +00:00
ARG PIP_JMS_MIRROR=https://pypi.douban.com/simple
2022-04-22 05:44:39 +00:00
ENV PIP_JMS_MIRROR=$PIP_JMS_MIRROR
# 因为以 jms 或者 jumpserver 开头的 mirror 上可能没有
RUN pip install --upgrade pip==20.2.4 setuptools==49.6.0 wheel==0.34.2 -i ${PIP_MIRROR} \
2022-03-15 05:06:04 +00:00
&& pip install --no-cache-dir $(grep -E 'jms|jumpserver' requirements/requirements.txt) -i ${PIP_JMS_MIRROR} \
&& pip install --no-cache-dir -r requirements/requirements.txt -i ${PIP_MIRROR} \
&& rm -rf ~/.cache/pip
2021-09-23 02:26:39 +00:00
2022-04-22 05:44:39 +00:00
ARG VERSION
ENV VERSION=$VERSION
ADD . .
RUN cd utils \
&& bash -ixeu build.sh \
&& mv ../release/jumpserver /opt/jumpserver \
2022-04-22 05:50:05 +00:00
&& rm -rf /tmp/build \
2022-04-22 05:44:39 +00:00
&& echo > /opt/jumpserver/config.yml
WORKDIR /opt/jumpserver
2018-11-13 07:57:44 +00:00
VOLUME /opt/jumpserver/data
VOLUME /opt/jumpserver/logs
ENV LANG=zh_CN.UTF-8
2019-09-27 02:36:06 +00:00
EXPOSE 8070
2018-11-13 07:57:44 +00:00
EXPOSE 8080
ENTRYPOINT ["./entrypoint.sh"]