-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An image with Chrome and/or Firefox would be very convenient for testing purpose #31
Comments
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 |
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 |
No description provided.
The text was updated successfully, but these errors were encountered: