From 0023bf5e47d8d746bcdab1e65cf93fe8c205767e Mon Sep 17 00:00:00 2001 From: Daniel Bolin Date: Wed, 18 Sep 2024 14:57:53 -0400 Subject: [PATCH] fix: Use correct python install in popv container --- containers/popv/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/popv/Dockerfile b/containers/popv/Dockerfile index 1924b6d..1467a68 100644 --- a/containers/popv/Dockerfile +++ b/containers/popv/Dockerfile @@ -14,4 +14,4 @@ COPY context/ . # Ensure numba has the correct settings or it might throw an error ENV NUMBA_NUM_THREADS=10 -CMD ["python", "/main.py"] +CMD ["python3", "/main.py"]