It looks like the docker image runs python -u -m pip install --disable-pip-version-check --no-python-version-warning -q --editable /app when it starts up, is there any way to run this step as part of the docker build? It would be great to have the image start as fast as possible, even if that means a larger docker image.
It looks like the docker image runs
python -u -m pip install --disable-pip-version-check --no-python-version-warning -q --editable /app
when it starts up, is there any way to run this step as part of the docker build? It would be great to have the image start as fast as possible, even if that means a larger docker image.