Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Building images locally for testing and debugging

James Mortensen edited this page Dec 9, 2023 · 4 revisions

The normal build process, the one that uses make, builds the images for all 3 supported platforms. Docker doesn't support building multi-architecture images locally and can only build and push them to a repository, such as Docker Hub. In order to test locally, we'll build only for our platform, and we'll use the build-locally.sh script.

Build the Base image

RELEASE=selenium-4.16.0 VERSION=4.16.1 bash build-locally.sh base_multi

This is the same as running the following command:

cd Base && docker buildx build --platform linux/arm64 --build-arg NAME=seleniarm --build-arg RELEASE=selenium-4.16.0 --build-arg VERSION=4.16.1 -t seleniarm/base:4.16.1-20231209 .
Clone this wiki locally