We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92fc905 commit 39a4b67Copy full SHA for 39a4b67
1 file changed
frontend/test.Dockerfile
@@ -1,6 +1,17 @@
1
# Use a pre-built Flutter image from GitHub Container Registry
2
FROM ghcr.io/cirruslabs/flutter:3.32.4
3
4
+# Install chrome to be a test device
5
+RUN apt-get update && apt-get install -y \
6
+ wget \
7
+ gnupg \
8
+ && wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \
9
+ && sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' \
10
+ && apt-get update \
11
+ && apt-get install -y google-chrome-stable \
12
+ && apt-get clean \
13
+ && rm -rf /var/lib/apt/lists/*
14
+
15
# Set working directory
16
WORKDIR /app
17
0 commit comments