FROM jodogne/orthancMAINTAINER Sebastien Jodogne <s.jodo-REDACTED-mail.com>LABEL Description="Official plugins for Orthanc" Vendor="Sebastien Jodogne, University Hospital of Liege"RUN apt-get updateRUN DEBIAN_FRONTEND=noninteractive apt-get -y install libgdcm2-dev libjpeg-dev postgresql-server-dev-all && rm -rf /var/lib/apt/lists/*ADD ./build-webviewer.sh /root/build-webviewer.shRUN bash /root/build-webviewer.sh "default"ADD ./build-postgresql.sh /root/build-postgresql.shRUN bash /root/build-postgresql.sh "default"ADD ./build-dicomweb.sh /root/build-dicomweb.shRUN bash /root/build-dicomweb.sh "default"VOLUME [ "/var/lib/orthanc/db" ]EXPOSE 4242EXPOSE 8042ENTRYPOINT [ "Orthanc", "--verbose" ]CMD [ "/etc/orthanc/" ]