Skip to content
This repository was archived by the owner on Jun 5, 2025. It is now read-only.

Bump python from 3.12-slim to 3.13-slim #127

Merged
merged 1 commit into from
Nov 29, 2024
Merged
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
@@ -1,5 +1,5 @@
# Builder stage: Install dependencies and build the application
FROM python:3.12-slim AS builder
FROM python:3.13-slim AS builder

# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -30,7 +30,7 @@ RUN poetry config virtualenvs.create false && \
COPY . /app

# Runtime stage: Create the final lightweight image
FROM python:3.12-slim AS runtime
FROM python:3.13-slim AS runtime

# Install runtime system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
Expand Down