Skip to content

Commit

Permalink
Merge pull request #279 from netlogix/feature/update-chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
saschanowak authored May 15, 2024
2 parents 3ecbe2f + 4de81d8 commit 99b5d87
Showing 1 changed file with 19 additions and 8 deletions.
27 changes: 19 additions & 8 deletions chromium/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,23 @@
FROM debian:bullseye-slim AS chromium
FROM debian:bookworm-slim AS chromium

RUN sed -i -e's/ main/ main contrib/g' /etc/apt/sources.list && \
echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections && \
apt-get update && apt-get install -y \
curl \
chromium=120.0.6099.224-1~deb11u1 \
ttf-mscorefonts-installer \
--no-install-recommends \
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
&& echo "deb https://deb.debian.org/debian bookworm contrib non-free" >> /etc/apt/sources.list \
&& echo "ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true" | debconf-set-selections \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
chromium \
fonts-freefont-ttf \
fonts-indic \
fonts-ipafont-gothic \
fonts-kacst \
fonts-liberation \
fonts-noto-cjk \
fonts-thai-tlwg \
fonts-wqy-zenhei \
ttf-mscorefonts-installer \
&& rm -rf /var/lib/apt/lists/*

RUN groupadd -r chromium && \
Expand Down

0 comments on commit 99b5d87

Please sign in to comment.