FROM databricksruntime/standard:11.3-LTS as application
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-17-2024 06:16 AM
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
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-18-2024 02:45 PM
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
~

