Hello,
I’ve been trying to deploy a streamlit app to community cloud, from my private Github repo.
We’re using a private Pypi to install dependencies hosted on Azure, and poetry.
I’ve tried adding the environment variables to access the repository, similar to what mentioned here.
POETRY_REPOSITORY_AZURE_URL = "..."
POETRY_HTTP_BASIC_AZURE_USERNAME = "..."
POETRY_HTTP_BASIC_AZURE_PASSWORD = "..."
This works when running the poetry install
locally.
However, during the docker installation on community cloud, poetry does not seem to access these variables:
I believe this is happening because these environment variables are only accessible during runtime, and not during dependency installation.
Can I get it running in another way?