* jibri: turn on -x so that we can see what is actually executing * jibri: bail out on the build if the actual release doesn't match the major release * jibri: ensure the correct chromedriver gets downloaded when CHROME_RELEASE != latest * jibri: move chrome installation to a separate script
20 lines
504 B
Docker
20 lines
504 B
Docker
ARG JITSI_REPO=jitsi
|
|
ARG BASE_TAG=latest
|
|
FROM ${JITSI_REPO}/base-java:${BASE_TAG}
|
|
|
|
RUN apt-dpkg-wrap apt-get update && \
|
|
apt-dpkg-wrap apt-get install -y jibri libgl1-mesa-dri procps jitsi-upload-integrations jq && \
|
|
apt-cleanup
|
|
|
|
#ARG CHROME_RELEASE=latest
|
|
#ARG CHROMEDRIVER_MAJOR_RELEASE=latest
|
|
ARG CHROME_RELEASE=96.0.4664.45
|
|
ARG CHROMEDRIVER_MAJOR_RELEASE=96
|
|
COPY build/install-chrome.sh /install-chrome.sh
|
|
RUN /install-chrome.sh && \
|
|
rm /install-chrome.sh
|
|
|
|
COPY rootfs/ /
|
|
|
|
VOLUME /config
|