Mercurial > hg > orthanc-python
annotate Resources/Builders/Docker/Dockerfile-Release @ 4:e3128420249d
fixing the SDK version
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 27 Mar 2020 12:22:22 +0100 |
parents | 7ed502b17b8f |
children |
rev | line source |
---|---|
0 | 1 FROM jodogne/orthanc-plugins:1.6.0 |
2 | |
3 MAINTAINER Sebastien Jodogne <s.jodogne@gmail.com> | |
4 LABEL Description="Orthanc, free DICOM server" Vendor="The Orthanc project" | |
5 | |
6 RUN apt-get -y clean && apt-get -y update | |
7 RUN DEBIAN_FRONTEND=noninteractive apt-get -y install python3.7 libpython3.7 && \ | |
8 apt-get clean && rm -rf /var/lib/apt/lists/* | |
9 | |
10 ADD ./docker-build/share/orthanc/plugins/libOrthancPython.so \ | |
11 /usr/local/share/orthanc/plugins/libOrthancPython.so |