Use armv7l as a Docker image tag instead of arm32v7
Current Docker image tags in Docker Hub, such as arm32v7arm32v6 are not convenient to use in Dockerfile. Since they are in original format, it is annoing to find out the tags.
If the tags are equivalent to the results of uname -m, we can define Dockerfile as below.
ARG NAME_TAG_IMAGE=latest
FROM keinos/php8-jit:$NAME_TAG_IMAGE
...
And then, the user can build the image with the below command.
Use
armv7l
as a Docker image tag instead ofarm32v7
Current Docker image tags in Docker Hub, such as
arm32v7
arm32v6
are not convenient to use in Dockerfile. Since they are in original format, it is annoing to find out the tags.If the tags are equivalent to the results of
uname -m
, we can define Dockerfile as below.And then, the user can build the image with the below command.