Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arm32v6 Architecture Missing lts and 18 #1963

Open
scottschreckengaust opened this issue Sep 7, 2023 · 2 comments
Open

arm32v6 Architecture Missing lts and 18 #1963

scottschreckengaust opened this issue Sep 7, 2023 · 2 comments

Comments

@scottschreckengaust
Copy link

Problem

The official node images are missing the lts and 18 tags for the arm32v6 architecture https://hub.docker.com/r/arm32v6/node/:

% docker pull arm32v6/node:lts
Error response from daemon: manifest for arm32v6/node:lts not found: manifest unknown: manifest unknown

% docker pull arm32v6/node:18
Error response from daemon: manifest for arm32v6/node:18 not found: manifest unknown: manifest unknown

arm32v6 is not consistent with the other five supported architectures. See lines in https://github.com/nodejs/docker-node/blob/main/architectures

bashbrew-arch  variants
amd64          alpine3.17,alpine3.18,bookworm,bookworm-slim,bullseye,bullseye-slim,buster,buster-slim
arm32v6        alpine3.17,alpine3.18
arm32v7        alpine3.17,alpine3.18,bookworm,bookworm-slim,bullseye,bullseye-slim,buster,buster-slim
arm64v8        alpine3.17,alpine3.18,bookworm,bookworm-slim,bullseye,bullseye-slim,buster,buster-slim
i386           alpine3.17,alpine3.18
ppc64le        alpine3.17,alpine3.18,bookworm,bookworm-slim,bullseye,bullseye-slim,buster,buster-slim
s390x          alpine3.17,alpine3.18,bookworm,bookworm-slim,bullseye,bullseye-slim,buster,buster-slim

Solution

Mimic the other five documented supporting architectures (amd64, arm32v7, arm64v8,ppc64le, and s390x)

% docker pull arm32v6/node:lts
lts: Pulling from arm32v6/node
...

% docker pull arm32v6/node:18
18: Pulling from arm32v6/node
...

Alternatives to Consider

  • Undesirable: Remove support for arm32v6 architecture for lts and 18
scottschreckengaust added a commit to scottschreckengaust/docker-node that referenced this issue Sep 7, 2023
@scottschreckengaust
Copy link
Author

I am aware of the arm32v6/node:lts-alpine, but this is not the same.
Also, https://github.com/docker-library/official-images/blob/master/library/node would likely need an update...

@nschonni
Copy link
Member

nschonni commented Sep 7, 2023

LTS and 18 are aliases to the Debian base images, which no longer support that architecture. ARM32v7 also no longer successfully builds on those platforms and is likely to be dropped #1886

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants