From 0a80bc535b00c92532d4f0eb2c6897de3b946279 Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Tue, 22 Jul 2025 13:15:38 +0300 Subject: [PATCH] Add Docker cache buster to force rebuild - Add ARG CACHE_BUST to force rebuild of code layer - Ensures latest mcp_auth_http_simple.py syntax fix is deployed - Resolves JSON syntax error in OAuth metadata endpoint Forces fresh container build without cache --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 111f909..5aa2fb8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,10 @@ COPY pyproject.toml poetry.lock* requirements*.txt* ./ RUN pip install --no-cache-dir uv && \ uv pip install --system --no-cache-dir .[asgi,saas] +# Cache buster - force rebuild +ARG CACHE_BUST=202507221015 +RUN echo "Cache bust: $CACHE_BUST" + # Copy application source COPY . .