Dockerfile 723 B

12345678910111213141516171819
  1. ARG JITSI_REPO=jitsi
  2. ARG BASE_TAG=latest
  3. FROM ${JITSI_REPO}/base-java:${BASE_TAG}
  4. LABEL org.opencontainers.image.title="Jitsi Gateway to SIP (jigasi)"
  5. LABEL org.opencontainers.image.description="Server-side application that allows regular SIP clients to join conferences."
  6. LABEL org.opencontainers.image.url="https://github.com/jitsi/jigasi"
  7. LABEL org.opencontainers.image.source="https://github.com/jitsi/docker-jitsi-meet"
  8. LABEL org.opencontainers.image.documentation="https://jitsi.github.io/handbook/"
  9. ENV GOOGLE_APPLICATION_CREDENTIALS /config/key.json
  10. RUN apt-dpkg-wrap apt-get update && \
  11. apt-dpkg-wrap apt-get install -y jigasi jq && \
  12. apt-cleanup
  13. COPY rootfs/ /
  14. VOLUME ["/config", "/tmp/transcripts"]