mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-04-27 19:17:01 +00:00
* perf: update dependency * perf: remove source build * perf: Update Dockerfile with new base image tag * perf: use cache build * perf: Update Dockerfile with new base image tag * fix: variable incorrectly defined * perf: Update Dockerfile with new base image tag * fix: openpyxl fixed version * perf: Update Dockerfile with new base image tag * perf: remove cache * perf: Update Dockerfile with new base image tag * perf: update pyproject.toml * perf: Update Dockerfile with new base image tag * perf: remove cache * perf: Update Dockerfile with new base image tag --------- Co-authored-by: 吴小白 <296015668@qq.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
33 lines
911 B
Plaintext
33 lines
911 B
Plaintext
ARG VERSION=dev
|
|
|
|
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} AS build-xpack
|
|
FROM jumpserver/core:${VERSION}-ce
|
|
|
|
COPY --from=build-xpack /opt/xpack /opt/jumpserver/apps/xpack
|
|
|
|
ARG TOOLS=" \
|
|
g++ \
|
|
curl \
|
|
iputils-ping \
|
|
netcat-openbsd \
|
|
nmap \
|
|
telnet \
|
|
vim \
|
|
wget"
|
|
|
|
RUN set -ex \
|
|
&& apt-get update \
|
|
&& apt-get -y install --no-install-recommends ${TOOLS} \
|
|
&& apt-get clean all \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /opt/jumpserver
|
|
|
|
ARG PIP_MIRROR=https://pypi.org/simple
|
|
COPY poetry.lock pyproject.toml ./
|
|
RUN set -ex \
|
|
&& . /opt/py3/bin/activate \
|
|
&& pip install poetry -i ${PIP_MIRROR} \
|
|
&& poetry install --only xpack
|
|
|