Skip to content

Commit

Permalink
Remove i386 CPU Architecture
Browse files Browse the repository at this point in the history
  • Loading branch information
theAkito committed Oct 12, 2023
1 parent 28efb9c commit 3fe5def
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-push-app-alpine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 3fe5def

Please sign in to comment.