Dockerfile 1.1 KB

12345678910111213141516171819202122232425
  1. LABEL org.opencontainers.image.title="Jitsi Gateway to SIP (jigasi)"
  2. LABEL org.opencontainers.image.description="Server-side application that allows regular SIP clients to join conferences."
  3. LABEL org.opencontainers.image.url="https://github.com/jitsi/jigasi"
  4. LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
  5. LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
  6. ARG JITSI_REPO=jitsi
  7. ARG BASE_TAG=latest
  8. FROM ${JITSI_REPO}/base:${BASE_TAG}
  9. ENV GOOGLE_APPLICATION_CREDENTIALS /config/key.json
  10. # Jigasi doesn't yet work well with Java 11, let's ccontinue to use 8.
  11. RUN mkdir -p /usr/share/man/man1 && \
  12. wget -qO - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | gpg --dearmour > /etc/apt/trusted.gpg.d/openjdk.gpg && \
  13. echo "deb https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ bullseye main" > /etc/apt/sources.list.d/openjdk.list && \
  14. apt-dpkg-wrap apt-get update && \
  15. apt-dpkg-wrap apt-get install -y adoptopenjdk-8-hotspot-jre && \
  16. apt-dpkg-wrap apt-get install -y jigasi jq && \
  17. apt-cleanup
  18. COPY rootfs/ /
  19. VOLUME ["/config", "/tmp/transcripts"]