Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Allow using a pre-built postgres-builder image for caching
ARG POSTGRES_BUILDER_IMAGE=""
ARG PG_VERSION=17.2
ARG ALPINE_VERSION=3.22
ARG ALPINE_VERSION=3.23

# Build stage for minimal PostgreSQL
FROM alpine:${ALPINE_VERSION} AS postgres-builder-build
Expand Down Expand Up @@ -112,7 +112,7 @@ RUN uv sync --group dev && \
du -sh .venv

# Final stage - minimal runtime
FROM alpine:3.22
FROM alpine:3.23

# S6 Overlay version
ARG S6_OVERLAY_VERSION=3.2.0.2
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.2.6
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand All @@ -25,7 +25,7 @@ services:
# Conformance suite server (option 1: use pre-built JAR if available)
# For fresh checkout, use: cd tck && make init
tck-server:
image: eclipse-temurin:25-jre
image: eclipse-temurin:25.0.2_10-jre
container_name: tck-server
ports:
- "8443:8443"
Expand Down
2 changes: 1 addition & 1 deletion tck/conformance-suite-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN git clone https://gitlab.com/openid/conformance-suite.git .
RUN mvn clean package -B -DskipTests=true

# Runtime stage
FROM eclipse-temurin:25-jre
FROM eclipse-temurin:25.0.2_10-jre

COPY --from=builder /build/target/fapi-test-suite.jar /server/fapi-test-suite.jar

Expand Down
2 changes: 1 addition & 1 deletion tck/conformance-suite-build/Dockerfile.multi
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ COPY scripts ./scripts
RUN mvn clean package -B -DskipTests=true

# Stage 2: Final runtime image
FROM eclipse-temurin:25-jre
FROM eclipse-temurin:25.0.2_10-jre

# Create non-root user for security
RUN groupadd -r conformance && useradd -r -g conformance conformance
Expand Down
2 changes: 1 addition & 1 deletion tck/conformance-suite-build/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ version: '3.8'
services:
# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.2.6
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/docker-compose-tck-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.2.6
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
2 changes: 1 addition & 1 deletion tck/docker-compose-tck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:

# MongoDB for conformance suite storage
tck-mongodb:
image: mongo:8.2.1
image: mongo:8.2.6
container_name: tck-mongodb
volumes:
- tck_mongo_data:/data/db
Expand Down
4 changes: 2 additions & 2 deletions tck/docker/docker-compose-simple.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: '3.8'
services:
# MongoDB for conformance suite storage
conformance-mongo:
image: mongo:8.2.1
image: mongo:8.2.6
container_name: tck-conformance-mongo
environment:
MONGO_INITDB_ROOT_USERNAME: admin
Expand All @@ -21,7 +21,7 @@ services:

# Conformance suite server (will use built JAR)
conformance-server:
image: eclipse-temurin:25-jre
image: eclipse-temurin:25.0.2_10-jre
container_name: tck-conformance-server
volumes:
- ../conformance-suite/target:/server
Expand Down
Loading