Remove chrome from dockerfile
All checks were successful
Build and Publish / build_and_publish (push) Successful in 4m24s

it *should* download automatically
This commit is contained in:
Nexus 2024-06-12 00:24:13 +01:00
parent 30018f41d3
commit 493e9e9b85
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -8,54 +8,53 @@ LABEL org.opencontainers.image.description "Version 2 of jimmy."
WORKDIR /app WORKDIR /app
RUN DEBIAN_FRONTEND=noninteractive apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get upgrade -y
RUN DEBIAN_FRONTEND=noninteractive apt-get upgrade -y
# Install chrome dependencies # Install chrome dependencies
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ # RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
gconf-service \ # gconf-service \
libasound2 \ # libasound2 \
libatk1.0-0 \ # libatk1.0-0 \
libc6 \ # libc6 \
libcairo2 \ # libcairo2 \
libcups2 \ # libcups2 \
libdbus-1-3 \ # libdbus-1-3 \
libexpat1 \ # libexpat1 \
libfontconfig1 \ # libfontconfig1 \
libgcc1 \ # libgcc1 \
libgconf-2-4 \ # libgconf-2-4 \
libgdk-pixbuf2.0-0 \ # libgdk-pixbuf2.0-0 \
libglib2.0-0 \ # libglib2.0-0 \
libgtk-3-0 \ # libgtk-3-0 \
libnspr4 \ # libnspr4 \
libpango-1.0-0 \ # libpango-1.0-0 \
libpangocairo-1.0-0 \ # libpangocairo-1.0-0 \
libstdc++6 \ # libstdc++6 \
libx11-6 \ # libx11-6 \
libx11-xcb1 \ # libx11-xcb1 \
libxcb1 \ # libxcb1 \
libxcomposite1 \ # libxcomposite1 \
libxcursor1 \ # libxcursor1 \
libxdamage1 \ # libxdamage1 \
libxext6 \ # libxext6 \
libxfixes3 \ # libxfixes3 \
libxi6 \ # libxi6 \
libxrandr2 \ # libxrandr2 \
libxrender1 \ # libxrender1 \
libxss1 \ # libxss1 \
libxtst6 \ # libxtst6 \
ca-certificates \ # ca-certificates \
fonts-liberation \ # fonts-liberation \
libappindicator1 \ # libappindicator1 \
libnss3 \ # libnss3 \
lsb-release \ # lsb-release \
xdg-utils \ # xdg-utils \
chromium \ # chromium \
chromium-common \ # chromium-common \
chromium-driver \ # chromium-driver \
chromium-sandbox \ # chromium-sandbox \
chromium-shell \ # chromium-shell \
webext-ublock-origin-chromium # webext-ublock-origin-chromium
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ RUN DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
traceroute \ traceroute \