Skip to content

Commit cefa9be

Browse files
committed
Make sample image defauly path relative
1 parent 1cb0024 commit cefa9be

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/modality_emulator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
PACS_DB_PATH = os.getenv("PACS_DB_PATH", "/var/lib/pacs/pacs.db")
4040
PACS_HOST = os.getenv("PACS_HOST", "localhost")
4141
PACS_PORT = int(os.getenv("PACS_PORT", "4244"))
42-
SAMPLE_IMAGES_PATH = os.getenv("SAMPLE_IMAGES_PATH", "/app/sample_images")
42+
SAMPLE_IMAGES_PATH = os.getenv("SAMPLE_IMAGES_PATH", "sample_images")
4343

4444

4545
class DicomExample:

0 commit comments

Comments
 (0)