Skip to content

Commit

Permalink
update timezone inside container to EDT
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Oct 21, 2024
1 parent bdf6447 commit c6a0ec1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# FROM python:3.8
# FROM ghcr.io/mamba-org/micromamba:1.5.1-focal-cuda-11.3.1
FROM docker.io/python:3.12.0-slim-bookworm
RUN ln -sf /usr/share/zoneinfo/America/New_York /etc/timezone

LABEL org.opencontainers.image.authors="FNNDSC <dev@babyMRI.org>" \
org.opencontainers.image.title="A ChRIS plugin to send DICOMS" \
Expand Down
6 changes: 3 additions & 3 deletions dicom_dirSend.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
logger.opt(colors = True)
logger.add(sys.stderr, format=logger_format)

__version__ = '1.1.8'
__version__ = '1.1.9'

DISPLAY_TITLE = r"""
_ _ _ _ _ _____ _
Expand All @@ -47,9 +47,9 @@
parser.add_argument('-p', '--port', default='4242', type=str,
help='Host port')
parser.add_argument('-a', '--aeTitle', default='ChRIS', type=str,
help='AET title')
help='my AE title')
parser.add_argument('-c', '--calledAETitle', default='CHRISLOCAL', type=str,
help='called AET title of peer')
help='called AE title of peer')
parser.add_argument('-V', '--version', action='version',
version=f'%(prog)s {__version__}')
parser.add_argument( '--pftelDB',
Expand Down

0 comments on commit c6a0ec1

Please sign in to comment.