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 play-with-docker/machinelearning/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM tensorflow/tensorflow:2.10.0rc0
FROM tensorflow/tensorflow:2.20.0
RUN apt-get update
RUN apt-get install python-opencv -y
Copy link

Copilot AI Aug 17, 2025

Choose a reason for hiding this comment

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

The package 'python-opencv' may not be available or may have been renamed in the newer TensorFlow 2.20.0 base image. Consider using 'python3-opencv' or installing OpenCV via pip instead.

Suggested change
RUN apt-get install python-opencv -y
RUN apt-get install python3-opencv -y

Copilot uses AI. Check for mistakes.

ENV APP_HOME /app
Expand Down
Loading