Skip to content

Commit

Permalink
memory and version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 25, 2023
1 parent 9e4d4e7 commit d13bb90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
FROM docker.io/python:3.12.0-slim-bookworm

LABEL org.opencontainers.image.authors="FNNDSC <[email protected]>" \
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}
Expand Down
4 changes: 2 additions & 2 deletions dicom_repack.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"""
_ _ _ _
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit d13bb90

Please sign in to comment.