From 6be8a9d1b66fdddf165c4ea65ba98c943f82ec43 Mon Sep 17 00:00:00 2001 From: Cody Baker Date: Tue, 14 Jun 2022 12:39:05 -0400 Subject: [PATCH 1/2] added debugged Dockerfile --- Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..9cae9ab6d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM python:3.8 +WORKDIR /usr/src/ +ADD . nwb-conversion-tools/ +RUN cd nwb-conversion-tools \ + && pip install -e .[full] \ + && pip uninstall -y numpy \ + && pip install numpy==1.21.0 # needed because of a binary incompatability From 7e4fb9d3825665be1671f04e88d4001acd88d035 Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Mon, 20 Jun 2022 13:43:59 -0400 Subject: [PATCH 2/2] Update Dockerfile --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cae9ab6d..0fc3ea1f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,5 @@ -FROM python:3.8 +FROM python:3.8 # Cannot support 3.9 due to numpy conflict and compatibility issue WORKDIR /usr/src/ ADD . nwb-conversion-tools/ RUN cd nwb-conversion-tools \ - && pip install -e .[full] \ - && pip uninstall -y numpy \ - && pip install numpy==1.21.0 # needed because of a binary incompatability + && pip install -e .[full]