Skip to content

Commit b0fa418

Browse files
committed
Update to new ubi9 images
Signed-off-by: Mihai Criveti <[email protected]>
1 parent 59cb380 commit b0fa418

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Containerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi9-minimal:9.6-1747218906
1+
FROM registry.access.redhat.com/ubi9-minimal:9.6-1749489516
22
LABEL maintainer="Mihai Criveti" \
33
name="mcp/mcpgateway" \
44
version="0.1.0" \

Containerfile.lite

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ ARG PYTHON_VERSION=3.11 # Python major.minor series to track
2424
###########################
2525
# Base image for copying into scratch
2626
###########################
27-
FROM registry.access.redhat.com/ubi9/ubi-micro:9.6-1747318857 AS base
27+
FROM registry.access.redhat.com/ubi9/ubi-micro:9.6-1749632992 AS base
2828

2929
###########################
3030
# Builder stage
3131
###########################
32-
FROM registry.access.redhat.com/ubi9/ubi:9.6-1747219013 AS builder
32+
FROM registry.access.redhat.com/ubi9/ubi:9.6-1749542372 AS builder
3333
SHELL ["/bin/bash", "-c"]
3434

3535
ARG PYTHON_VERSION

mcpgateway/wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _extract_base_url(url: str) -> str:
9494
raise ValueError(f"Invalid URL provided: {url}")
9595

9696
if "/servers/" in url:
97-
before_servers = parsed.path.split('/servers')[0]
97+
before_servers = parsed.path.split("/servers")[0]
9898
return f"{parsed.scheme}://{parsed.netloc}{before_servers}"
9999

100100
return f"{url}"

0 commit comments

Comments
 (0)