This message was deleted.
# ask-for-help
s
This message was deleted.
j
The Dockerfiles seem to be saved under bentos directory. See the Path value in
bentoml list
list, then it’s under
env/docker
a
you can get the path of the bento through
b get bento:tag -o path
?
Can you explain more what type of debugging you are trying to do?
m
@Jiri Suchomel Thanks for the quick reply! I stumbled upon the Dockerfile in the bento once, but completely forgot that.
@Aaron Pham I'm using conda env and it's reinstalling everything on every
containerize
I'll try to isolate conda installation to a separate layer.
a
Conda installation should already be separated
m
It is, but the sources are copied before that. Every source file change invalidates subsequent layers. You have to ADD conda environment yaml and requirements.txt, do the installation and copy complete sources after that IMO.
Here is a fix https://github.com/bentoml/BentoML/pull/3673 that works well for me.