1
0
mirror of https://github.com/rancher/os.git synced 2025-07-15 07:41:39 +00:00

Push framework image and fix rancherd

This commit is contained in:
Darren Shepherd 2021-10-02 23:14:04 -07:00
parent 5e4cfa19ab
commit 72291094c0
3 changed files with 3 additions and 1 deletions

View File

@ -27,6 +27,7 @@ RUN ["luet", \
"toolchain/yip", \
"utils/installer", \
"utils/k9s", \
"utils/rancherd", \
"utils/nerdctl"]
COPY --from=build /usr/sbin/ros-installer /usr/sbin/ros-installer

View File

@ -39,7 +39,7 @@ push:
docker push ${IMAGE}
.PHONY: push
push-framework:
push-framework: build-framework
docker push ${REPO}-framework:${TAG}
.PHONY: iso

View File

@ -16,6 +16,7 @@ fi
if [ "$PUSH" = "true" ]; then
make push
make push-framework
fi