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 backend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Simple Python backend Dockerfile for OpsSight Backend

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

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion backend/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# OpsSight Backend - Development Dockerfile
# Multi-stage build for development with hot reload and debugging

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

# Set environment variables
ENV PYTHONUNBUFFERED=1 \
Expand Down
4 changes: 2 additions & 2 deletions backend/Dockerfile.prod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Multi-stage production Dockerfile for OpsSight Backend
FROM python:3.11-alpine AS builder
FROM python:3.14-alpine AS builder

# Install build dependencies
RUN apk add --no-cache \
Expand All @@ -19,7 +19,7 @@ COPY requirements-minimal.txt .
RUN pip install --no-cache-dir --user -r requirements-minimal.txt

# Production stage
FROM python:3.11-alpine AS production
FROM python:3.14-alpine AS production

# Install runtime dependencies
RUN apk add --no-cache \
Expand Down
Loading