homelab-codex-ws/services/agent-system/webui/Dockerfile

8 lines
100 B
Docker
Raw Permalink Normal View History

FROM python:3.11-slim
WORKDIR /app
COPY web.py index.html ./
EXPOSE 8080
CMD ["python", "web.py"]