diff --git a/Dockerfile b/Dockerfile index 5e48fcd..dc6ceb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,5 +7,6 @@ WORKDIR CASALIOY RUN pip3 install poetry RUN python3 -m poetry config virtualenvs.create false RUN python3 -m poetry install +RUN python3 -m pip install --force streamlit # Temp fix, see pyproject.toml RUN pre-commit install COPY example.env .env diff --git a/README.md b/README.md index d158f69..be3222e 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ cd ../ python -m pip install poetry python -m poetry config virtualenvs.in-project true python -m poetry install +python -m pip install --force streamlit # Temporary bandaid fix, waiting for streamlit >=1.23 . .venv/bin/activate pre-commit install ```