Skip to content

Commit

Permalink
Remove proxy workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
nosamad authored and hmlampe committed Apr 11, 2022
1 parent d20be4d commit d53c30e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hack/dockerfile/install/rootlesskit.installer
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ install_rootlesskit_dynamic() {
}

_install_rootlesskit() (
echo "Install rootlesskit version ${ROOTLESSKIT_VERSION}"
echo "Install rootlesskit version $ROOTLESSKIT_COMMIT"
git clone https://github.com/rootless-containers/rootlesskit.git "$GOPATH/src/github.com/rootless-containers/rootlesskit"
cd "$GOPATH/src/github.com/rootless-containers/rootlesskit" || exit 1
git checkout -q "$ROOTLESSKIT_COMMIT"
export GO111MODULE=on
for f in rootlesskit rootlesskit-docker-proxy; do
GOBIN="${PREFIX}" GO111MODULE=on go install ${BUILD_MODE} -ldflags="$ROOTLESSKIT_LDFLAGS" "github.com/rootless-containers/rootlesskit/cmd/${f}@${ROOTLESSKIT_VERSION}"
done
Expand Down

0 comments on commit d53c30e

Please sign in to comment.