@@ -4,41 +4,41 @@ ENV DEBIAN_FRONTEND=noninteractive \
44 DISPLAY=:99
55
66# Install system dependencies
7- RUN apt-get update && apt-get install -y --no-install-recommends \
8- wget \
9- git \
10- lsof \
11- xvfb \
12- gnupg \
13- ca-certificates \
14- && rm -rf /var/lib/apt/lists/*
7+ # RUN apt-get update && apt-get install -y --no-install-recommends \
8+ # wget \
9+ # git \
10+ # lsof \
11+ # xvfb \
12+ # gnupg \
13+ # ca-certificates \
14+ # && rm -rf /var/lib/apt/lists/*
1515
1616# Install Chromium (works on both AMD64 and ARM64)
17- RUN apt-get update \
18- && apt-get install -y --no-install-recommends chromium \
19- && rm -rf /var/lib/apt/lists/* \
20- && ln -sf /usr/bin/chromium /usr/bin/google-chrome-stable \
21- && ln -sf /usr/bin/chromium /usr/bin/google-chrome
17+ # RUN apt-get update \
18+ # && apt-get install -y --no-install-recommends chromium \
19+ # && rm -rf /var/lib/apt/lists/* \
20+ # && ln -sf /usr/bin/chromium /usr/bin/google-chrome-stable \
21+ # && ln -sf /usr/bin/chromium /usr/bin/google-chrome
2222
2323
2424# # Install Chrome dependencies
25- # RUN apt-get update && apt-get install -y \
26- # wget \
27- # gnupg2 \
28- # lsof \
29- # apt-transport-https \
30- # ca-certificates \
31- # x11-utils xdg-utils xvfb \
32- # software-properties-common \
33- # && rm -rf /var/lib/apt/lists/*
25+ RUN apt-get update && apt-get install -y \
26+ wget \
27+ gnupg2 \
28+ lsof \
29+ apt-transport-https \
30+ ca-certificates \
31+ x11-utils xdg-utils xvfb \
32+ software-properties-common \
33+ && rm -rf /var/lib/apt/lists/*
3434
35- # # Add the Google Chrome repository
36- # RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
37- # && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
35+ # Add the Google Chrome repository
36+ RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - \
37+ && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list
3838
39- # # Install Google Chrome
40- # RUN apt-get update && apt-get install -y google-chrome-stable \
41- # && rm -rf /var/lib/apt/lists/*
39+ # Install Google Chrome
40+ RUN apt-get update && apt-get install -y google-chrome-stable \
41+ && rm -rf /var/lib/apt/lists/*
4242
4343
4444WORKDIR /app
0 commit comments