From c49bc738a112409b6de14f39c9e68359527b8d19 Mon Sep 17 00:00:00 2001
From: Xavier Robin <xavier.robin@unibas.ch>
Date: Wed, 21 May 2025 11:02:43 +0200
Subject: [PATCH] doc: replace dummy script with existing test_docker.py

---
 README.md | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 7cec7786..4ced70c6 100644
--- a/README.md
+++ b/README.md
@@ -39,8 +39,8 @@ docker pull registry.scicore.unibas.ch/schwede/openstructure:latest
 And run a test script:
 
 ```
-echo print\(\"Hello OST\"\) > test.py
-docker run --rm -v $(pwd):/home registry.scicore.unibas.ch/schwede/openstructure:latest test.py
+wget https://git.scicore.unibas.ch/schwede/openstructure/-/raw/master/docker/test_docker.py -O test_ost.py
+docker run --rm -v $(pwd):/home registry.scicore.unibas.ch/schwede/openstructure:latest test_ost.py
 ```
 ### Singularity
 
@@ -58,8 +58,8 @@ sudo singularity build ost.img Singularity
 And run a test script:
 
 ```
-echo print\(\"Hello OST\"\) > test.py
-singularity run --app OST ost.img test.py
+wget https://git.scicore.unibas.ch/schwede/openstructure/-/raw/master/docker/test_docker.py -O test_ost.py
+singularity run --app OST ost.img test_ost.py
 ```
 
 ### Build from source
-- 
GitLab