diff --git a/docker/Dockerfile b/docker/Dockerfile new file mode 100644 index 0000000..ce84093 --- /dev/null +++ b/docker/Dockerfile @@ -0,0 +1,15 @@ +FROM orthancteam/orthanc:24.9.1 + +MAINTAINER Yannick Lemaréchal +LABEL Description="Orthanc with pyorthanc" +LABEL org.opencontainers.image.authors="Gabriel Couture, Yannick Lemaréchal" +LABEL org.label-schema.url="https://github.com/gacou54/pyorthanc" + +RUN apt-get -y clean && \ + apt-get -y update && \ + apt-get -y upgrade && \ + DEBIAN_FRONTEND=noninteractive apt-get -y --no-install-recommends install \ + python3.11 python3.11-full + + +RUN pip install --break-system-packages pyorthanc==1.18.0 \ No newline at end of file