56 lines
1.7 KiB
Docker
56 lines
1.7 KiB
Docker
FROM maven:3.9.11-eclipse-temurin-21
|
|
|
|
RUN set -eux; \
|
|
apt-get update; \
|
|
apt-get install -y --no-install-recommends \
|
|
ca-certificates \
|
|
curl \
|
|
unzip \
|
|
fontconfig \
|
|
fonts-liberation \
|
|
libasound2t64 \
|
|
libatk-bridge2.0-0 \
|
|
libatk1.0-0 \
|
|
libc6 \
|
|
libcairo2 \
|
|
libcups2 \
|
|
libdbus-1-3 \
|
|
libexpat1 \
|
|
libfontconfig1 \
|
|
libgbm1 \
|
|
libgcc1 \
|
|
libglib2.0-0 \
|
|
libgtk-3-0 \
|
|
libnspr4 \
|
|
libnss3 \
|
|
libpango-1.0-0 \
|
|
libpangocairo-1.0-0 \
|
|
libstdc++6 \
|
|
libx11-6 \
|
|
libx11-xcb1 \
|
|
libxcb1 \
|
|
libxcomposite1 \
|
|
libxcursor1 \
|
|
libxdamage1 \
|
|
libxext6 \
|
|
libxfixes3 \
|
|
libxi6 \
|
|
libxrandr2 \
|
|
libxrender1 \
|
|
libxss1 \
|
|
libxtst6 \
|
|
xdg-utils; \
|
|
CHROME_VERSION="$(curl -fsSL https://googlechromelabs.github.io/chrome-for-testing/LATEST_RELEASE_STABLE)"; \
|
|
curl -fsSL "https://storage.googleapis.com/chrome-for-testing-public/${CHROME_VERSION}/linux64/chrome-linux64.zip" -o /tmp/chrome.zip; \
|
|
curl -fsSL "https://storage.googleapis.com/chrome-for-testing-public/${CHROME_VERSION}/linux64/chromedriver-linux64.zip" -o /tmp/chromedriver.zip; \
|
|
unzip -q /tmp/chrome.zip -d /opt; \
|
|
unzip -q /tmp/chromedriver.zip -d /opt; \
|
|
ln -sf /opt/chrome-linux64/chrome /usr/bin/google-chrome; \
|
|
ln -sf /opt/chrome-linux64/chrome /usr/bin/chromium; \
|
|
ln -sf /opt/chromedriver-linux64/chromedriver /usr/bin/chromedriver; \
|
|
chmod +x /opt/chrome-linux64/chrome /opt/chromedriver-linux64/chromedriver; \
|
|
rm -f /tmp/chrome.zip /tmp/chromedriver.zip; \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /workspace
|