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
@@ -1,5 +1,5 @@
# Multi-stage build for optimized image
FROM python:3.9-slim AS builder
FROM python:3.14-slim AS builder

# Set working directory
WORKDIR /app
Expand All @@ -21,7 +21,7 @@ RUN pip install --no-cache-dir --user \
RUN pip install --no-cache-dir --user -r requirements.txt

# Final stage
FROM python:3.9-slim
FROM python:3.14-slim

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.api
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dockerfile for Plant Classification API

FROM python:3.10-slim
FROM python:3.14-slim

# Set working directory
WORKDIR /app
Expand Down