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 dataflow/custom-containers/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM ubuntu:focal
FROM ubuntu:resolute
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The Ubuntu tag resolute is not a valid release name and will cause the Docker build to fail as the image cannot be pulled. Ubuntu releases follow an alphabetical naming convention (e.g., Focal, Jammy, Noble). Additionally, upgrading to a version newer than 22.04 (Jammy) will break the build at line 27 because python3-distutils is no longer available in the default repositories for newer Ubuntu releases (like 24.04 Noble). If the intention is to upgrade to a newer LTS, jammy (22.04) is the recommended choice for better compatibility with the existing Python 3.8 setup.

FROM ubuntu:jammy


WORKDIR /pipeline

Expand Down