jumpserver/Dockerfile

105 lines
3.5 KiB
Docker
Raw Normal View History

2022-12-09 02:27:50 +00:00
FROM python:3.9-slim as stage-build
2022-11-15 09:24:56 +00:00
ARG TARGETARCH
ARG VERSION
ENV VERSION=$VERSION
WORKDIR /opt/jumpserver
ADD . .
RUN cd utils && bash -ixeu build.sh
2022-12-09 02:27:50 +00:00
FROM python:3.9-slim
2022-11-15 09:24:56 +00:00
ARG TARGETARCH
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=" \
2022-11-15 09:24:56 +00:00
g++ \
make \
pkg-config"
2022-03-15 05:06:04 +00:00
ARG DEPENDENCIES=" \
2022-11-15 09:24:56 +00:00
freetds-dev \
libpq-dev \
libffi-dev \
libjpeg-dev \
libldap2-dev \
libsasl2-dev \
libxml2-dev \
libxmlsec1-dev \
libxmlsec1-openssl \
libaio-dev"
2022-03-15 05:06:04 +00:00
ARG TOOLS=" \
2022-11-15 09:24:56 +00:00
ca-certificates \
2022-12-09 03:06:58 +00:00
curl \
default-libmysqlclient-dev \
2022-12-21 03:21:48 +00:00
default-mysql-client \
2022-11-15 09:24:56 +00:00
locales \
openssh-client \
2022-12-22 04:47:46 +00:00
procps \
sshpass \
2022-11-15 09:24:56 +00:00
telnet \
unzip \
2022-12-21 03:56:39 +00:00
vim \
git \
2022-11-15 09:24:56 +00:00
wget"
2022-11-16 00:58:16 +00:00
ARG APT_MIRROR=http://mirrors.ustc.edu.cn
2022-11-15 09:24:56 +00:00
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
2022-11-16 00:58:16 +00:00
sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
2022-11-15 09:24:56 +00:00
&& rm -f /etc/apt/apt.conf.d/docker-clean \
&& ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& 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} \
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
&& echo "set mouse-=a" > ~/.vimrc \
&& echo "no" | dpkg-reconfigure dash \
2022-11-15 09:24:56 +00:00
&& echo "zh_CN.UTF-8" | dpkg-reconfigure locales \
2022-11-22 02:15:55 +00:00
&& sed -i "s@# export @export @g" ~/.bashrc \
&& sed -i "s@# alias @alias @g" ~/.bashrc \
&& rm -rf /var/lib/apt/lists/*
2018-11-13 07:57:44 +00:00
2022-11-15 14:18:15 +00:00
ARG DOWNLOAD_URL=https://download.jumpserver.org
2022-04-22 05:44:39 +00:00
RUN mkdir -p /opt/oracle/ \
&& cd /opt/oracle/ \
2022-11-15 14:18:15 +00:00
&& wget ${DOWNLOAD_URL}/public/instantclient-basiclite-linux.${TARGETARCH}-19.10.0.0.0.zip \
&& unzip instantclient-basiclite-linux.${TARGETARCH}-19.10.0.0.0.zip \
&& sh -c "echo /opt/oracle/instantclient_19_10 > /etc/ld.so.conf.d/oracle-instantclient.conf" \
2021-09-17 08:14:15 +00:00
&& ldconfig \
2022-11-15 14:18:15 +00:00
&& rm -f instantclient-basiclite-linux.${TARGETARCH}-19.10.0.0.0.zip
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
2021-09-23 02:26:39 +00:00
2022-11-15 09:24:56 +00:00
RUN --mount=type=cache,target=/root/.cache/pip \
set -ex \
&& pip config set global.index-url ${PIP_MIRROR} \
&& pip install --upgrade pip \
&& pip install --upgrade setuptools wheel \
&& pip install $(grep -E 'jms|jumpserver' requirements/requirements.txt) -i ${PIP_JMS_MIRROR} \
&& pip install -r requirements/requirements.txt
2022-04-22 05:44:39 +00:00
2022-11-15 09:24:56 +00:00
COPY --from=stage-build /opt/jumpserver/release/jumpserver /opt/jumpserver
RUN echo > /opt/jumpserver/config.yml \
&& rm -rf /tmp/build
2022-04-22 05:44:39 +00:00
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
EXPOSE 8080
2018-11-13 07:57:44 +00:00
ENTRYPOINT ["./entrypoint.sh"]