Updated Dockerfile to use heredoc syntax, make.bash for latest psiphon release

This commit is contained in:
Swarup Sengupta
2025-04-05 03:03:10 +05:30
parent b2d368dedd
commit d62b101336
2 changed files with 28 additions and 28 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
#!/bin/bash
MK_TARGETS=${TARGETS:-"linux/amd64,linux/386,linux/arm64,linux/arm/v7,linux/arm/v6"}
MK_VERSION=${VERSION:-2.0.31}
MK_GO_VERSION=${GO_VERSION:-1.22.7}
MK_VERSION=${VERSION:-2.0.32}
MK_GO_VERSION=${GO_VERSION:-1.23.7}
sudo docker buildx build \
docker buildx build \
--build-arg TARGETS=${MK_TARGETS} \
--build-arg VERSION=${MK_VERSION} \
--build-arg PSIPHON_VERSION=${MK_VERSION} \
--build-arg GO_VERSION=${MK_GO_VERSION} \
-t swarupsengupta2007/psiphon:${MK_VERSION} \
-t swarupsengupta2007/psiphon:latest \