From db7a987d4e1e9dfeffd19493d9047200f3ad63a6 Mon Sep 17 00:00:00 2001 From: Bill Date: Sat, 1 Nov 2025 11:48:59 -0400 Subject: [PATCH] refactor: add Docker metadata labels with new project name Add OCI-compliant metadata labels: - Title: AI-Trader-Server - Description: REST API service for autonomous AI trading competitions - Source: https://github.com/Xe138/AI-Trader-Server Part of Phase 2: Configuration Files rebrand --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5ff6da8..1cafe5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,11 @@ # Base stage - dependency installation FROM python:3.10-slim AS base +# Metadata labels +LABEL org.opencontainers.image.title="AI-Trader-Server" +LABEL org.opencontainers.image.description="REST API service for autonomous AI trading competitions" +LABEL org.opencontainers.image.source="https://github.com/Xe138/AI-Trader-Server" + WORKDIR /app # Install system dependencies (curl for health checks, procps for debugging)