Skip to content

Commit

Permalink
Vulnerability Fix - gunicorn to 22.0.0 (#3856)
Browse files Browse the repository at this point in the history
Co-authored-by: Billy Hu <[email protected]>
  • Loading branch information
w-javed and ninghu authored Nov 20, 2024
1 parent cb86a41 commit 9aa2fe0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ RUN conda create -n {{env.conda_env_name}} python=3.9.16 pip=23.0.1 -q -y && \
promptflow-tools && \
{% endif %}
conda run -n {{env.conda_env_name}} pip install keyrings.alt && \
conda run -n {{env.conda_env_name}} pip install gunicorn==20.1.0 && \
conda run -n {{env.conda_env_name}} pip install gunicorn==22.0.0 && \
conda run -n {{env.conda_env_name}} pip install 'uvicorn>=0.27.0,<1.0.0' && \
conda run -n {{env.conda_env_name}} pip cache purge && \
conda clean -a -y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN conda create -n promptflow-serve python=3.9.16 pip=23.0.1 -q -y && \
pip install -r /flow/requirements.txt && \
conda run -n promptflow-serve pip install promptflow && \
conda run -n promptflow-serve pip install keyrings.alt && \
conda run -n promptflow-serve pip install gunicorn==20.1.0 && \
conda run -n promptflow-serve pip install gunicorn==22.0.0 && \
conda run -n promptflow-serve pip install 'uvicorn>=0.27.0,<1.0.0' && \
conda run -n promptflow-serve pip cache purge && \
conda clean -a -y
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN conda create -n promptflow-serve python=3.9.16 pip=23.0.1 -q -y && \
pip install -r /flow/requirements_txt && \
conda run -n promptflow-serve pip install promptflow && \
conda run -n promptflow-serve pip install keyrings.alt && \
conda run -n promptflow-serve pip install gunicorn==20.1.0 && \
conda run -n promptflow-serve pip install gunicorn==22.0.0 && \
conda run -n promptflow-serve pip install 'uvicorn>=0.27.0,<1.0.0' && \
conda run -n promptflow-serve pip cache purge && \
conda clean -a -y
Expand Down

0 comments on commit 9aa2fe0

Please sign in to comment.