From b7b267a71b26189bb049aa55b901c318c0ee8d4c Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Date: Sat, 7 Oct 2023 11:04:57 -0300 Subject: [PATCH] Dont reference python version on docker instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89999d3..a16c814 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ docker run \ --network host \ --name skynet-worker \ --mount type=bind,source="$(pwd)",target=/root/target \ - guilledk/skynet:runtime-cuda-py310 \ + guilledk/skynet:runtime-cuda \ skynet run dgpu # run worker with specific gpu @@ -74,6 +74,6 @@ docker run \ --network host \ --name skynet-worker-1 \ --mount type=bind,source="$(pwd)",target=/root/target \ - guilledk/skynet:runtime-cuda-py310 \ + guilledk/skynet:runtime-cuda \ skynet run dgpu ```