From bb38aefb9da8e908543d414f2801d564e1b04049 Mon Sep 17 00:00:00 2001 From: Outis Date: Mon, 1 Jun 2026 09:31:31 -0400 Subject: [PATCH] Add Dockerfile for Python Flask application --- ai-portal/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ai-portal/Dockerfile diff --git a/ai-portal/Dockerfile b/ai-portal/Dockerfile new file mode 100644 index 0000000..6149938 --- /dev/null +++ b/ai-portal/Dockerfile @@ -0,0 +1,13 @@ +FROM python:3.12-slim + +# Install docker compose CLI so the app can control other stacks +RUN apt-get update && apt-get install -y curl && \ + curl -fsSL https://get.docker.com | sh && \ + pip install flask && \ + rm -rf /var/lib/apt/lists/* + +WORKDIR /app +COPY app.py . +COPY templates/ templates/ + +CMD ["python", "app.py"]