diff --git a/Dockerfile b/Dockerfile index 368b48e..edb4927 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,4 @@ -# Python version can be changed, e.g. -# FROM python:3.8 -# FROM docker.io/fnndsc/conda:python3.10.2-cuda11.6.0 -FROM docker.io/python:3.10.6-slim-bullseye +FROM docker.io/fnndsc/conda:python3.10.6 LABEL org.opencontainers.image.authors="FNNDSC " \ org.opencontainers.image.title="Average Edge Length" \ @@ -9,6 +6,7 @@ LABEL org.opencontainers.image.authors="FNNDSC " \ WORKDIR /usr/local/src/pl-obj-avg-edge-length +RUN conda install -c conda-forge numpy=1.22.4 COPY requirements.txt . RUN pip install -r requirements.txt