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
2 changes: 1 addition & 1 deletion Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Multi-purpose builder image for HyperCode project
# This image can be used for builds, tests, and CI/CD pipelines

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

# Install system dependencies
RUN apt-get update && apt-get install -y \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# ==================== BASE STAGE ====================
# Shared foundation for all production stages
FROM python:3.11-slim as base
FROM python:3.14-slim as base

# Install system dependencies in a single layer with cache cleanup
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down
Loading