| # webssh:0.0.1 镜像配置文件 | |
| FROM python:3.11-slim | |
| RUN pip install --no-cache-dir tornado | |
| RUN mkdir -p /app/static /app/templates | |
| COPY handler.py /app/handler.py | |
| COPY static /app/static | |
| COPY templates /app/templates | |
| WORKDIR /app | |
| RUN touch /app/webssh.log | |
| EXPOSE 7860 | |
| CMD ["python", "handler.py"] | |