Streamlit and Bazel

Is anyone using bazel for streamlit? I’m using the sample balloons demo from the streamlit playground then using bazel modules (py_library, py_binary, oci_image) to launch the streamlit app. But, looking at the files within the docker container via debug mode, I don’t see streamlit installed indicated by ‘streamlit --version’.

I do see the bazel rules_python~~pip dependencies for streamlit when building the bazel py_binary locally :thinking:

In order to get streamlit into the container, I had to use pip to install streamlit using the oci_image.entrypoint. But, that seems odd since Bazel should already have streamlit installed for you? :thinking: