Import an already downloaded SpaCy language model to docker container without new download
I'd like to run multiple spacy language models on various docker containers. I don't want the docker image to contain the line RUN python -m spacy download en_core_web_lg, as other processes might have different language models. My question is: Is…