An image with Chrome and/or Firefox would be very convenient for testing purpose
Probably also xvfb, etc...
I'm curious what CI system would you be running these in?
Probably also xvfb, etc...
I'm curious what CI system would you be running these in?
GitLab CI
Fixing this issue would also make use of Github Actions more convenient.
The Github Actions starter workflow for Dart projects uses 'google/dart' image.
Is VERY important to have a docker image with Dart and Chrome (or Firefox), so we can run tests on it (basic for any CI).
The oficial dart image (google/dart) is complicated and slow to have a browser on it, running headless.
Transferred to new repo for official image
It would be great if there was a premade image for this but not too hard to create one yourself.
I'm using Firefox here because I ran into loads of issues with Chrome on a MacBook with an m2 processor (seems like there is no arm64 support).
FROM dart:3.2.5
RUN echo "deb http://deb.debian.org/debian/ unstable main contrib non-free" >> /etc/apt/sources.list.d/debian.list
RUN apt-get update
RUN apt-get install --fix-missing -y xvfb
RUN apt-get install -y --no-install-recommends firefox