Skip to content

Commit

Permalink
Docker image build error on ARM/v6 #2735
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed Apr 22, 2024
1 parent d1fdb90 commit ad6e942
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Expand Up @@ -8,6 +8,7 @@ env:
DEFAULT_DOCKER_IMAGE: nicolargo/glances
NODE_ENV: ${{ (contains('refs/heads/master', github.ref) || startsWith(github.ref, 'refs/tags/v')) && 'prod' || 'dev' }}
PUSH_BRANCH: ${{ 'refs/heads/develop' == github.ref || 'refs/heads/master' == github.ref || startsWith(github.ref, 'refs/tags/v') }}
# Alpine image do not support linux/arm/v6 - See issue #2735
DOCKER_PLATFORMS: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/386
# Ubuntu image only support linux/amd64 and linux/arm64 - See issue #2185
DOCKER_PLATFORMS_UBUNTU: linux/amd64,linux/arm64
Expand Down
2 changes: 1 addition & 1 deletion glances/__init__.py
Expand Up @@ -20,7 +20,7 @@
# Global name
# Version should start and end with a numerical char
# See https://packaging.python.org/specifications/core-metadata/#version
__version__ = '4.0.0_beta03'
__version__ = '4.0.0_beta04'
__apiversion__ = '4'
__author__ = 'Nicolas Hennion <[email protected]>'
__license__ = 'LGPLv3'
Expand Down

0 comments on commit ad6e942

Please sign in to comment.