From e12ac86da73bd4cd13c426d1d9605f2caac5752e Mon Sep 17 00:00:00 2001 From: Swarup Sengupta Date: Sat, 5 Apr 2025 03:09:36 +0530 Subject: [PATCH] Updated README with few steps --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c87d89f..109c499 100644 --- a/README.md +++ b/README.md @@ -29,15 +29,18 @@ docker buildx create --name cross-platform --platform ${TARGETS} --use # Build for current platform and load to docker image docker buildx build -t . --load +# If not already done, install the required cross-platform emulators +docker run --privileged --rm tonistiigi/binfmt --install all + # build for multi-arch and push to registry # optional, choose targets (defaults to the following list) export TARGETS="linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6" -# choose psiphon version -export VERSION=2.0.31 +# choose psiphon version (currently 2.0.32) +export PSIPHON_VERSION=2.0.32 -# choose go version (currently 1.22.7) -export GO_VERSION=1.22.7 +# choose go version (currently 1.23.7) +export GO_VERSION=1.23.7 # run the script ./make.bash --push