fuck it just install chrome too
Some checks failed
Build and Publish / build_and_publish (push) Has been cancelled

This commit is contained in:
Nexus 2024-06-12 01:18:51 +01:00
parent 7aa06c94be
commit e327ec8e5b
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

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