mirror of https://github.com/jumpserver/jumpserver
				
				
				
			
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
| ARG VERSION
 | |
| 
 | |
| 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"
 | |
| 
 | |
| 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 \
 | |
|     && 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 \
 | |
|     && apt-get update \
 | |
|     && apt-get -y install --no-install-recommends ${TOOLS} \
 | |
|     && echo "no" | dpkg-reconfigure dash
 | |
| 
 | |
| 
 | |
| 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 \
 | |
|     && pip install poetry -i ${PIP_MIRROR} \
 | |
|     && poetry config repositories.mirror ${PIP_MIRROR} \
 | |
|     && poetry install --only xpack
 | |
| 
 |