Merge pull request #10016 from jumpserver/pr@dev@use_ghcr_registry

perf: 使用 ghcr.io 托管镜像
This commit is contained in:
老广 2023-03-21 14:17:31 +08:00 committed by GitHub
commit 8e61b53460
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -8,4 +8,4 @@ celerybeat.pid
### Vagrant ### ### Vagrant ###
.vagrant/ .vagrant/
apps/xpack/.git apps/xpack/.git
.history/

1
.gitignore vendored
View File

@ -43,3 +43,4 @@ releashe
/apps/script.py /apps/script.py
data/* data/*
test.py test.py
.history/

View File

@ -1,6 +1,6 @@
ARG VERSION ARG VERSION
FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack FROM registry.fit2cloud.com/jumpserver/xpack:${VERSION} as build-xpack
FROM jumpserver/core:${VERSION} FROM ghcr.io/jumpserver/core:${VERSION}
COPY --from=build-xpack /opt/xpack /opt/jumpserver/apps/xpack COPY --from=build-xpack /opt/xpack /opt/jumpserver/apps/xpack
WORKDIR /opt/jumpserver WORKDIR /opt/jumpserver