We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an issue with apt-get update for the docker image bde2020/spark-master:2.2.0-hadoop2.8-hive-java8. It is impossible to update and throws a weird errors. Reference this for the solution: https://superuser.com/questions/1417617/apt-get-update-is-failing-in-debian
bde2020/spark-master:2.2.0-hadoop2.8-hive-java8
This can be built using this repo, so I figured this is the place for the suggested fix.
apt-fix.sh
base
docker build ... docker run ....
touch copy.list && chmod 777 copy.list echo "deb http://archive.debian.org/debian/ jessie main" >> copy.list && echo "deb-src http://archive.debian.org/debian/ jessie main" >> copy.list && echo "deb http://security.debian.org jessie/updates main" >> copy.list && echo "deb-src http://security.debian.org jessie/updates main" >> copy.list echo "$(cat copy.list)" > /etc/apt/sources.list cat /etc/apt/sources.list
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is an issue with apt-get update for the docker image
bde2020/spark-master:2.2.0-hadoop2.8-hive-java8
. It is impossible to update and throws a weird errors. Reference this for the solution: https://superuser.com/questions/1417617/apt-get-update-is-failing-in-debianThis can be built using this repo, so I figured this is the place for the suggested fix.
apt-fix.sh
base
folder and generate the image BASE imageand MASTER image (
docker build ... docker run ....
)fix debian 8 (jessie) issue: apt-get update fails
touch copy.list && chmod 777 copy.list
echo "deb http://archive.debian.org/debian/ jessie main" >> copy.list &&
echo "deb-src http://archive.debian.org/debian/ jessie main" >> copy.list &&
echo "deb http://security.debian.org jessie/updates main" >> copy.list &&
echo "deb-src http://security.debian.org jessie/updates main" >> copy.list
echo "$(cat copy.list)" > /etc/apt/sources.list
cat /etc/apt/sources.list
The text was updated successfully, but these errors were encountered: