From bf2cc2f55689632a9344c4ad24899980286a4b25 Mon Sep 17 00:00:00 2001 From: Anibal Angulo Date: Mon, 23 Feb 2026 17:37:26 +0000 Subject: [PATCH] Rename Dockerfile --- Dockerfile => DockerfileConnector | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) rename Dockerfile => DockerfileConnector (53%) diff --git a/Dockerfile b/DockerfileConnector similarity index 53% rename from Dockerfile rename to DockerfileConnector index 8b5ff40..0abfdf1 100644 --- a/Dockerfile +++ b/DockerfileConnector @@ -1,4 +1,4 @@ -FROM python:3.12-slim AS builder +FROM quay.ocp.banorte.com/golden/python-312:latest AS builder COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /usr/local/bin/ @@ -9,7 +9,7 @@ RUN uv sync --no-dev --frozen --no-install-project COPY main.py . -FROM python:3.12-slim +FROM quay.ocp.banorte.com/golden/python-312:latest WORKDIR /app @@ -17,9 +17,4 @@ COPY --from=builder /app /app ENV PATH="/app/.venv/bin:$PATH" -# Cloud Run injects PORT (defaults to 8080) -ENV PORT=8080 -EXPOSE ${PORT} - -# Shell form so ${PORT} is expanded at runtime -CMD python main.py --transport sse --port ${PORT} +CMD python main.py --transport sse --port 8000