From 76017245ba29aa98a2ff753ba78bf154dcbf3cea Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Thu, 21 Mar 2024 18:44:09 -0400 Subject: [PATCH] bypass git, just do direct local install --- dockerfiles/neuroconv_dev_dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dockerfiles/neuroconv_dev_dockerfile b/dockerfiles/neuroconv_dev_dockerfile index c92ded8b3..175c2e21a 100644 --- a/dockerfiles/neuroconv_dev_dockerfile +++ b/dockerfiles/neuroconv_dev_dockerfile @@ -1,5 +1,5 @@ -FROM continuumio/anaconda3:latest +FROM python:3.11.7-slim LABEL org.opencontainers.image.source=https://github.com/catalystneuro/neuroconv -RUN conda create -n neuroconv python=3.11.7 -RUN conda activate neuroconv && /bin/sh -c conda install git && python -m pip install git+https://github.com/catalystneuro/neuroconv.git@main +ADD /neuroconv /neuroconv +RUN cd neuroconv && pip install .[full] CMD ["python -m"]