Dockerfile 504 B

12345678910111213141516171819
  1. ARG JITSI_REPO=jitsi
  2. ARG BASE_TAG=latest
  3. FROM ${JITSI_REPO}/base-java:${BASE_TAG}
  4. RUN apt-dpkg-wrap apt-get update && \
  5. apt-dpkg-wrap apt-get install -y jibri libgl1-mesa-dri procps jitsi-upload-integrations jq && \
  6. apt-cleanup
  7. #ARG CHROME_RELEASE=latest
  8. #ARG CHROMEDRIVER_MAJOR_RELEASE=latest
  9. ARG CHROME_RELEASE=96.0.4664.45
  10. ARG CHROMEDRIVER_MAJOR_RELEASE=96
  11. COPY build/install-chrome.sh /install-chrome.sh
  12. RUN /install-chrome.sh && \
  13. rm /install-chrome.sh
  14. COPY rootfs/ /
  15. VOLUME /config