From b5ed9e624f56de7ae7a061bfd5fe27777c211162 Mon Sep 17 00:00:00 2001 From: Griffith Hughes <74072434+gchhughes@users.noreply.github.com> Date: Mon, 8 Jan 2024 12:02:57 -0800 Subject: [PATCH] Change to Python 3.8 --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5cef3c0..e0f2d49 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,8 @@ RUN apt-get update && \ add-apt-repository -y universe && \ apt-get -y install libncurses5-dev libncursesw5-dev libncurses5 -RUN pip install --no-cache-dir masspy==0.1.7 +RUN pip install python==3.8 RUN pip install --upgrade numpy==1.13 +RUN pip install --no-cache-dir masspy==0.1.7 USER jovyan