Unwebsockify is a TCP to WebSocket proxy/bridge -- like a reverse websockify.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

6 lines
177 B

  1. FROM docker.io/library/python:3-alpine
  2. WORKDIR /usr/src/app
  3. RUN pip install --no-cache-dir websockets
  4. COPY unwebsockify.py ./
  5. ENTRYPOINT [ "python", "-u", "./unwebsockify.py" ]