-
Notifications
You must be signed in to change notification settings - Fork 0
Dependency update #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
27146a0
9539acd
2890cab
87ce30f
84156f2
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| 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 | ||
|
|
||
| # Set environment variables to prevent interactive prompts and optimize Python | ||
| ENV DEBIAN_FRONTEND=noninteractive \ | ||
|
|
@@ -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
|
||
| && apt-get clean \ | ||
| && rm -rf /var/lib/apt/lists/* \ | ||
| && rm -rf /tmp/* \ | ||
|
|
||
| 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 | ||||||
|
||||||
| FROM python:3.15.0a2-slim | |
| FROM python:3.13-slim |
There was a problem hiding this comment.
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.