英文:
curlimages/curl no longer supports arm64?
问题
"rpc error: code = NotFound desc = failed to pull and unpack image "docker.io/curlimages/curl:latest": no match for platform in manifest: not found"
"看起来curlimages不再支持arm64?我的树莓派很可怜。"
"在这里没有提到 - https://github.com/curl/curl-docker/issues"
英文:
rpc error: code = NotFound desc = failed to pull and unpack image \"docker.io/curlimages/curl:latest\": no match for platform in manifest: not found""
Looks like curlimages no longer supports arm64? My poor pis.
No mention here - https://github.com/curl/curl-docker/issues
答案1
得分: 1
我也遇到了这个问题。我们通过使用以下Dockerfile构建自己的镜像来解决了这个问题:
FROM alpine
RUN apk --no-cache add curl
英文:
I have also encountered this issue. We fixed the issue by building our own image with the below Dockerfile:
FROM alpine
RUN apk --no-cache add curl
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论