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
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Optimized multi-stage build for AWS Bedrock cost optimization platform
# Features: Semantic Cache, Cost Calculator, Multi-Model Router, Observability

FROM python:3.11-slim as builder
FROM python:3.14-slim as builder

# Set working directory
WORKDIR /app
Expand All @@ -22,7 +22,7 @@ RUN pip install --no-cache-dir --user -r requirements.txt
# ===================================
# Production stage
# ===================================
FROM python:3.11-slim
FROM python:3.14-slim

# Metadata
LABEL maintainer="FluxAI Team"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dashboard
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# FluxAI Dashboard - Dockerfile
# Streamlit-based observability dashboard with Prometheus and PostgreSQL integration

FROM python:3.11-slim
FROM python:3.14-slim

# Metadata
LABEL maintainer="FluxAI Team"
Expand Down
Loading