docker: include chromium to build slides

This commit is contained in:
Glenn Y. Rolland 2021-11-30 13:33:42 +01:00
parent 4ca84cf000
commit ea801eacb8

View file

@ -2,11 +2,13 @@ FROM node:bullseye-slim
MAINTAINER Glenn ROLLAND <glenux@glenux.net>
RUN apt-get update \
&& apt-get install -y python3 python3-pip pipenv \
&& apt-get install -y --no-install-recommends python3 python3-pip pipenv \
&& apt-get clean
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& truncate -s 0 /var/log/*log
RUN apt-get update \
&& apt-get install -y make build-essential inotify-tools \
&& apt-get install -y --no-install-recommends make build-essential inotify-tools chromium \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \
&& truncate -s 0 /var/log/*log