FROM databricksruntime/standard:11.3-LTS as application

Maverick11
New Contributor

Below command was working until yesterday for 11.3-LTS  base image. It started failing from today (17Oct 2024 11AM IST)

FROM databricksruntime/standard:11.3-LTS as application

RUN
apt-get install -y python3-venv

 It throws the error :

Reading package lists...
Building dependency tree...
Reading state information...
Package python3-venv is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

Package 'python3-venv' has no installation candidate
The command '/bin/sh -c apt-get install -y python3-venv' returned a non-zero code: 100

 

gchandra
Databricks Employee
Databricks Employee

Any specific reason you are trying to containerize this?

Can you try adding an apt-get update before python3-venv

RUN apt-get update && \

         apt-get install -y python3-venv



~