Files

43 lines
1.3 KiB
Bash
Raw Permalink Normal View History

2020-12-07 16:16:42 -08:00
#!/bin/bash
2021-05-10 12:56:26 -07:00
#
# Copyright (c) 2015-2023 Hanzo AI, Inc.
2021-05-10 12:56:26 -07:00
#
# This file is part of Hanzo S3 stack
2021-05-10 12:56:26 -07:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
2020-12-07 16:16:42 -08:00
sudo sysctl net.ipv6.conf.all.disable_ipv6=1
2020-12-07 16:16:42 -08:00
2021-03-10 00:10:53 -08:00
release=$(git describe --abbrev=0 --tags)
docker buildx build --push --no-cache \
--build-arg RELEASE="${release}" \
-t "ghcr.io/hanzos3/cli:latest" \
-t "ghcr.io/hanzos3/cli:${release}" \
2024-10-13 06:54:36 -07:00
--platform=linux/arm64,linux/amd64,linux/ppc64le \
-f Dockerfile.release .
docker buildx prune -f
docker buildx build --push --no-cache \
--build-arg RELEASE="${release}" \
-t "ghcr.io/hanzos3/cli:${release}-cpuv1" \
2024-10-13 06:54:36 -07:00
--platform=linux/arm64,linux/amd64,linux/ppc64le \
-f Dockerfile.release.old_cpu .
docker buildx prune -f
sudo sysctl net.ipv6.conf.all.disable_ipv6=0