-
-
Notifications
You must be signed in to change notification settings - Fork 252
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
Python 3.11 in Docker #74
Comments
I installed droopal through docker and though 3.11 python but still when I running this command I am getting error , the site is reachable and it is in my /etc/hosts file Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): The above exception was the direct cause of the following exception: Traceback (most recent call last): During handling of the above exception, another exception occurred: Traceback (most recent call last): |
Use to specify the low version of Python sed -i 's/^FROM python:3.*/FROM python:3.10/' Dockerfile
docker build -t droope/droopescan . |
Hello. Docker image using "python:3" tag, like 'latest'. Now it is 3.12+ and imp module not exists there.
If now try to build&run docker image we got error:
Change plz it to
FROM python:3.11
The text was updated successfully, but these errors were encountered: