You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building the Docker image using Dockerfile.arch, an error occurs due to an incorrect base image specification. The Dockerfile currently uses archlinux/latest, which is not available on Docker Hub, resulting in the following error:
ERROR: failed to solve: archlinux/latest: failed to resolve source metadata for docker.io/archlinux/latest:latest: pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed Steps to Reproduce
Observe the error about failing to pull archlinux/latest.
Expected Behavior
The build should succeed using a valid base image. Suggested Fix
Update the base image in Dockerfile.arch to archlinux (without /latest). This ensures compatibility with the official Arch Linux Docker image on Docker Hub and resolves the build error.
The text was updated successfully, but these errors were encountered:
When building the Docker image using Dockerfile.arch, an error occurs due to an incorrect base image specification. The Dockerfile currently uses archlinux/latest, which is not available on Docker Hub, resulting in the following error:
ERROR: failed to solve: archlinux/latest: failed to resolve source metadata for docker.io/archlinux/latest:latest: pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed
Steps to Reproduce
sudo docker build -t profanity -f Dockerfile.arch .
Expected Behavior
The build should succeed using a valid base image.
Suggested Fix
Update the base image in Dockerfile.arch to archlinux (without /latest). This ensures compatibility with the official Arch Linux Docker image on Docker Hub and resolves the build error.
The text was updated successfully, but these errors were encountered: