Commit 9d2c984c authored by Cédric OLIVIER's avatar Cédric OLIVIER
Browse files

Merge branch 'renovate/fastapi-0.x' into 'main'

fix(deps): update dependency fastapi to ^0.89.0

See merge request to-be-continuous/tools/gcp-auth-provider!7
parents 05d2e988 d0f58c7e
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -18,7 +18,9 @@ WORKDIR /code
 
COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt

RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN apt-get -y update && apt-get -y upgrade \
    &&  rm -rf /var/lib/apt/lists/* \
    && pip install --no-cache-dir --upgrade -r /code/requirements.txt

COPY ./app /code/app

+214 −214

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ readme = "README.md"

[tool.poetry.dependencies]
python = "^3.8"
fastapi = "^0.88.0"
fastapi = "^0.89.0"
uvicorn = {extras = ["standard"], version = "^0.20.0"}
requests = "^2.28.1"