From 3fe5def7c4a53ad48f000d3aa69f6767e1883382 Mon Sep 17 00:00:00 2001 From: Akito Date: Thu, 12 Oct 2023 16:38:59 +0200 Subject: [PATCH] Remove i386 CPU Architecture https://forum.nim-lang.org/t/10547 --- .github/workflows/docker-build-push-app-alpine.yml | 2 +- README.md | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-build-push-app-alpine.yml b/.github/workflows/docker-build-push-app-alpine.yml index 6dcd970..6fc74cc 100644 --- a/.github/workflows/docker-build-push-app-alpine.yml +++ b/.github/workflows/docker-build-push-app-alpine.yml @@ -60,7 +60,7 @@ jobs: with: context: . file: ./alpine.Dockerfile - platforms: linux/ppc64le,linux/arm/v7,linux/arm64/v8,linux/386,linux/amd64 + platforms: linux/ppc64le,linux/arm/v7,linux/arm64/v8,linux/amd64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} diff --git a/README.md b/README.md index 14a9e40..34baa16 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,15 @@ linux/arm64/v8 linux/amd64 ``` +The [Alpine based images](https://hub.docker.com/_/alpine/tags) support the following architectures. + +``` +linux/ppc64le +linux/arm/v7 +linux/arm64/v8 +linux/amd64 +``` + ## How Semver tags are referring to the Nim version contained in that particular image. @@ -73,7 +82,7 @@ You may also run the rootless image as `root`, if you don't want to download an docker run -it --rm --user root akito13/nim:2.0.0-rootless bash -c "apt update && apt install -y libncurses-dev && nimble install -y moe" ``` -#### Alpine +### Alpine You may also use the [Alpine](https://www.alpinelinux.org/) based images. ```sh