This is a base Dockerfile for building containers with a specific Chromium snapshot version. It requires
specifying --build-args CHROMIUM_REVISION
with the build id of the Chromium snapshot. For example
--build-args CHROMIUM_REVISION=571375
A list of Chromium snapshots can be found here.
** Create a Dockerfile **
FROM chromie/chromium-snapshot:latest
** Build **
docker build --build-arg CHROMIUM_REVISION=XXXXX -t my-container .