Skip to content
Open
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 kubernetes/workshop/pods101/pods02-Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.10.14
FROM python:3.14.0rc2
Copy link
Preview

Copilot AI Aug 19, 2025

Choose a reason for hiding this comment

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

Upgrading from Python 3.10.14 to 3.14.0rc2 is a major version jump that may introduce breaking changes. This could affect compatibility with existing code and dependencies. Consider testing thoroughly and potentially upgrading incrementally through stable intermediate versions.

Suggested change
FROM python:3.14.0rc2
FROM python:3.10.14

Copilot uses AI. Check for mistakes.

RUN pip install requests
COPY watcher.py /
ENTRYPOINT ["python", "/watcher.py"]
Loading