I am building a Docker container with uWSGI with the following Dockerfile
instructions (relevant excerpt):
FROM debian:stretch
RUN apt-get update && \
apt-get install --no-install-recommends --no-install-suggests -y \
gcc python3 python3-dev python3-pip python3-setuptools
RUN pip3 install wheel
RUN pip3 install uwsgi
Later on, when invoking the WebSocket I encounter this error message:
you need to build uWSGI with SSL support to use the websocket handshake api function
How I can build uWSGI with SSL support in the context of a Debian-based Docker image?