Skip to content

Commit

Permalink
More fixes and bump to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rudolphpienaar committed May 1, 2024
1 parent b02e599 commit e78d03d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ FROM docker.io/python:3.12.1-slim-bookworm

LABEL org.opencontainers.image.authors="FNNDSC <[email protected]>" \
org.opencontainers.image.title="Spleen data downloader" \
org.opencontainers.image.description="A ChRIS FS plugin to download a set of spleen data"
org.opencontainers.image.description="A ChRIS DS plugin to download a set of spleen data"

ARG SRCDIR=/usr/local/src/pl-spleendata
ARG SRCDIR=/usr/local/src/pl-spleendatads
WORKDIR ${SRCDIR}

COPY requirements.txt .
Expand All @@ -19,4 +19,4 @@ RUN pip install ".[${extras_require}]" \
&& cd / && rm -rf ${SRCDIR}
WORKDIR /

CMD ["spleendata"]
CMD ["spleendatads"]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def readme():
long_description=readme(),
author="FNNDSC",
author_email="[email protected]",
url="https://github.com/rudolphpienaar/pl-spleendata",
url="https://github.com/FNNDSC/pl-spleendatads",
py_modules=["spleendatads"],
install_requires=["chris_plugin"],
license="MIT",
Expand Down
2 changes: 1 addition & 1 deletion spleendatads.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from monai.apps.utils import download_and_extract

__version__ = "1.0.4"
__version__ = "1.0.6"

DISPLAY_TITLE = r"""
Expand Down

0 comments on commit e78d03d

Please sign in to comment.