webssh / Dockerfile
airsltd's picture
hi
1d2aa43
raw
history blame contribute delete
309 Bytes
# 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"]