| FROM ubuntu:rolling | |
| RUN apt-get update && apt-get install -y python3 python3-pip nodejs npm && \ | |
| pip3 install --break-system-packages websockets | |
| COPY wspty /wspty | |
| RUN chmod +x /wspty | |
| COPY wsshell.py /wsshell.py | |
| EXPOSE 7860 | |
| CMD python3 /wsshell.py | |
| FROM ubuntu:rolling | |
| RUN apt-get update && apt-get install -y python3 python3-pip nodejs npm && \ | |
| pip3 install --break-system-packages websockets | |
| COPY wspty /wspty | |
| RUN chmod +x /wspty | |
| COPY wsshell.py /wsshell.py | |
| EXPOSE 7860 | |
| CMD python3 /wsshell.py | |