-
Notifications
You must be signed in to change notification settings - Fork 566
New issue
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
docker build returns an error #153
Comments
i am having the same problem. Have you found a solution to it? |
No, not really. I guess that it's a question of searching for a substitute repository which has Python 3.6 in it. I saw a page on Stackoverflow but neither of the solutions there worked, so I created this bug issue. Please, do let me know if you fixed the issue! |
deadsnake ppa and python 3.6 are EOL, better create a new dockerfile |
I ran iinto the same issue and decided to build a more modern dockerfile this will build but won't solve other issues since the software isn't actively maintained anymore. FROM debian:bullseye RUN apt-get clean && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y locales RUN apt update && apt upgrade -y RUN git clone https://github.com/ThoughtfulDev/EagleEye WORKDIR EagleEye |
Hello, I was following the instructions on the README page and when I try to run:
sudo docker build -t eagle-eye .
It gives the following error at some point
E: Unable to locate package python3.6
E: Couldn't find any package by glob 'python3.6'
E: Couldn't find any package by regex 'python3.6'
E: Unable to locate package python3.6-dev
E: Couldn't find any package by glob 'python3.6-dev'
E: Couldn't find any package by regex 'python3.6-dev'
The command '/bin/sh -c apt-get update && add-apt-repository -y ppa:deadsnakes/ppa && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python3.6 python3.6-dev' returned a non-zero code: 100
I do believe this is an issue related with the repository ppa:deadsnakes/ppa not being accessible. Not sure if this is temporary or not. I'll try later on and let you know if it worked.
The text was updated successfully, but these errors were encountered: