Browse Source

perf: ee dockerfile

pull/13830/head
ibuler 4 months ago committed by Bryan
parent
commit
0d338f80c5
  1. 2
      Dockerfile
  2. 13
      Dockerfile-ee

2
Dockerfile

@ -1,4 +1,4 @@
FROM jumpserver/core-base:20240724_070705 AS stage-build
FROM jumpserver/core-base:20240801_101727 AS stage-build
ARG VERSION

13
Dockerfile-ee

@ -16,9 +16,7 @@ ARG TOOLS=" \
wget"
ARG APT_MIRROR=http://deb.debian.org
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
--mount=type=cache,target=/var/lib/apt,sharing=locked,id=core \
set -ex \
RUN set -ex \
&& rm -f /etc/apt/apt.conf.d/docker-clean \
&& echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache \
&& sed -i "s@http://.*.debian.org@${APT_MIRROR}@g" /etc/apt/sources.list \
@ -26,13 +24,12 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=core \
&& apt-get -y install --no-install-recommends ${TOOLS} \
&& echo "no" | dpkg-reconfigure dash
WORKDIR /opt/jumpserver
ARG PIP_MIRROR=https://pypi.org/simple
RUN --mount=type=bind,source=poetry.lock,target=/opt/jumpserver/poetry.lock \
--mount=type=bind,source=pyproject.toml,target=/opt/jumpserver/pyproject.toml \
set -ex \
. /opt/py3/bin/activate \
COPY poetry.lock pyproject.toml ./
RUN set -ex \
&& . /opt/py3/bin/activate \
&& pip install poetry -i ${PIP_MIRROR} \
&& poetry config repositories.mirror ${PIP_MIRROR} \
&& poetry install --only xpack

Loading…
Cancel
Save