Skip to content
Merged
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
8 changes: 6 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14.1-slim
FROM python:3.15.0a2-slim
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using Python 3.15.0a2 (an alpha/pre-release version) in production is not recommended. Alpha versions are unstable, may contain bugs, and are not suitable for production deployments. Consider using the latest stable Python version (3.13.x as of the current date) instead. Additionally, note that Python 3.14 has not been released yet as of January 2025, so the previous version "3.14.1" mentioned in the diff appears to be invalid as well.

Suggested change
FROM python:3.15.0a2-slim
FROM python:3.13-slim

Copilot uses AI. Check for mistakes.

# Set environment variables to prevent interactive prompts and optimize Python
ENV DEBIAN_FRONTEND=noninteractive \
Expand All @@ -10,14 +10,18 @@ ENV DEBIAN_FRONTEND=noninteractive \
PUID=1000 \
PGID=1000

# Install system dependencies
# Install system dependencies including build tools for Python packages
RUN apt-get update && apt-get install -y --no-install-recommends \
git \
curl \
zip \
unzip \
cron \
gosu \
gcc \
g++ \
make \
libffi-dev \
Comment on lines +21 to +24
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Build tools (gcc, g++, make, libffi-dev) have been added to the main Dockerfile but are missing from Dockerfile.root. This creates an inconsistency between the two Docker configurations. If these build tools are necessary for installing Python packages from requirements.txt, they should also be added to Dockerfile.root to ensure consistent behavior across both Docker images.

Copilot uses AI. Check for mistakes.
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/* \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.root
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14.1-slim
FROM python:3.15.0a2-slim
Copy link

Copilot AI Dec 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using Python 3.15.0a2 (an alpha/pre-release version) in production is not recommended. Alpha versions are unstable, may contain bugs, and are not suitable for production deployments. Consider using the latest stable Python version (3.13.x as of the current date) instead. Additionally, note that Python 3.14 has not been released yet as of January 2025, so the previous version "3.14.1" mentioned in the diff appears to be invalid as well.

Suggested change
FROM python:3.15.0a2-slim
FROM python:3.13-slim

Copilot uses AI. Check for mistakes.

# Set environment variables to prevent interactive prompts and optimize Python
ENV DEBIAN_FRONTEND=noninteractive \
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ PyGithub==2.8.1
gitpython==3.1.45
python-dotenv==1.2.1
requests==2.32.5
sqlalchemy==2.0.44
sqlalchemy==2.0.45
flask-sqlalchemy==3.1.1
wtforms==3.2.1
gunicorn==23.0.0
Expand Down