From 1e9e879097bf45f54a3493c032515c82b195cbe5 Mon Sep 17 00:00:00 2001 From: Jennings Zhang Date: Fri, 26 Apr 2024 12:47:42 -0400 Subject: [PATCH] Correct mount path /usr/local/lib/python3.12 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 611ea6c..a8ff3ec 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ Mount the source code `app.py` into a container to try out changes without rebui ```shell docker run --rm -it --userns=host -u $(id -u):$(id -g) \ - -v $PWD/app.py:/usr/local/lib/python3.11/site-packages/app.py:ro \ + -v $PWD/app.py:/usr/local/lib/python3.12/site-packages/app.py:ro \ -v $PWD/in:/incoming:ro -v $PWD/out:/outgoing:rw -w /outgoing \ localhost/fnndsc/pl-appname commandname /incoming /outgoing ```