File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ COPY --from=builder /build/dist/*.whl /home/datashader/tmp/
2323ENV PATH="$PATH:/home/datashader/.local/bin"
2424RUN pip install --upgrade pip && \
2525 pip install --no-cache-dir /home/datashader/tmp/*.whl && \
26- pip install gunicorn && \
27- pip install uvicorn
26+ pip install gunicorn==20.1.0 && \
27+ pip install uvicorn==0.22.0
2828
2929COPY deployment/logging_config.yml /opt/elastic_datashader/
3030COPY deployment/gunicorn_config.py /opt/elastic_datashader/
@@ -34,7 +34,8 @@ ENV DATASHADER_CACHE_DIRECTORY=/opt/elastic_datashader/tms-cache
3434
3535
3636ENTRYPOINT [ "gunicorn" , \
37- "--ciphers" ,"!SHA:!SHA256:!CHACHA20:!AESCCM:!ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384" , \
37+ "--ssl-version" ,"TLSv1_2" , \
38+ "--ciphers" ,"ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384" , \
3839 "--chdir" , "/opt/elastic_datashader" , \
3940 "-c" , "/opt/elastic_datashader/gunicorn_config.py" , \
4041 "--max-requests" , "40" , \
You can’t perform that action at this time.
0 commit comments