Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Vulnerability Fix - gunicorn to 22.0.0 #3856

Merged
merged 5 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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==20.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==20.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==20.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
Loading