mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
313 B
13 lines
313 B
ARG VERSION
|
|
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack
|
|
FROM jumpserver/core:${VERSION}
|
|
ARG TARGETARCH
|
|
|
|
COPY --from=build-xpack /opt/xpack /opt/jumpserver/apps/xpack
|
|
|
|
WORKDIR /opt/jumpserver
|
|
|
|
RUN --mount=type=cache,target=/root/.cache \
|
|
set -ex \
|
|
&& poetry install --only=xpack
|