From d13bb902491182f9ff15cbdfd626b2c286eae122 Mon Sep 17 00:00:00 2001 From: "sandipsamal117@gmail.com" Date: Wed, 25 Oct 2023 13:15:01 -0400 Subject: [PATCH] memory and version bump --- Dockerfile | 4 ++-- dicom_repack.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index dd1d894..27f8c18 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,8 @@ FROM docker.io/python:3.12.0-slim-bookworm LABEL org.opencontainers.image.authors="FNNDSC " \ - org.opencontainers.image.title="My ChRIS Plugin" \ - org.opencontainers.image.description="A ChRIS plugin to do something awesome" + org.opencontainers.image.title="A DICOM repack plugin" \ + org.opencontainers.image.description="A ChRIS plugin to merge individual dicom slices into a single multiframe DICOM" ARG SRCDIR=/usr/local/src/pl-dicom_repack WORKDIR ${SRCDIR} diff --git a/dicom_repack.py b/dicom_repack.py index 93f7d27..8b0ccb1 100644 --- a/dicom_repack.py +++ b/dicom_repack.py @@ -7,7 +7,7 @@ from chris_plugin import chris_plugin, PathMapper import pydicom as dicom import os -__version__ = '1.0.4' +__version__ = '1.0.5' DISPLAY_TITLE = r""" _ _ _ _ @@ -41,7 +41,7 @@ title='My ChRIS plugin', category='', # ref. https://chrisstore.co/plugins min_memory_limit='2Gi', # supported units: Mi, Gi - min_cpu_limit='80000m', # millicores, e.g. "1000m" = 1 CPU core + min_cpu_limit='20000m', # millicores, e.g. "1000m" = 1 CPU core min_gpu_limit=0 # set min_gpu_limit=1 to enable GPU ) def main(options: Namespace, inputdir: Path, outputdir: Path):