mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-21 15:58:52 +00:00
9 lines
272 B
Plaintext
9 lines
272 B
Plaintext
ARG VERSION
|
|
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack
|
|
FROM jumpserver/core:${VERSION}
|
|
|
|
COPY --from=build-xpack /opt/xpack /opt/jumpserver/apps/xpack
|
|
|
|
RUN --mount=type=cache,target=/root/.cache \
|
|
set -ex \
|
|
&& poetry install --only=xpack |