- Create directory and clone Browser Images
mkdir /opt/arm64 && cd /opt/arm64
git clone https://github.com/aerokube/images
cd images/selenium/base
- Put Dockerfile.base to this directory. For building image, you need to set your hub.docker.com account and name for the image
docker buildx build \
--progress=plain \
--platform linux/arm64 \
--file ./Dockerfile.base \
--tag ${hub.docker.com account}/${image name and version} -o type=docker .
For example:
docker buildx build --progress=plain --platform linux/arm64 --file ./Dockerfile.base --tag dumbdumbych/selenium_base:u2010-en_ru_utf8.a -o type=docker .
- Load image to hub.docker.com
docker login
docker push ${hub.docker.com account}/${image name and version}