-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨Orthanc docker image with pyorthanc
- Loading branch information
1 parent
03546eb
commit dceaac4
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
FROM orthancteam/orthanc:24.9.1 | ||
|
||
MAINTAINER Yannick Lemaréchal <[email protected]> | ||
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 |