From 4f99962ed3c193d022c26bd3f24b7284ff82a406 Mon Sep 17 00:00:00 2001 From: bolbol Date: Tue, 9 Jun 2026 20:01:27 +0000 Subject: [PATCH] init: dashboard hermes mission control --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3a492df --- /dev/null +++ b/Dockerfile @@ -0,0 +1,6 @@ +FROM python:3.11-slim +WORKDIR /app +RUN pip install fastapi uvicorn --no-cache-dir +COPY app/main.py /app/main.py +COPY templates/ /app/templates/ +CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]