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
How can I containerize Kenning? I couldn't find the project's Dockerfile. Could you provide me with a Dockerfile.
The text was updated successfully, but these errors were encountered:
You can use something like:
FROM python:3.10 RUN pip install -U git+https://github.com/antmicro/kenning.git WORKDIR /project ENTRYPOINT ["kenning"]
and do customizations based on https://antmicro.github.io/kenning/project-readme.html#kenning-installation
how to build?
docker build -t kenning .
how to run?
docker run --rm -it -v $(pwd):/project kenning -h
Sorry, something went wrong.
No branches or pull requests
How can I containerize Kenning? I couldn't find the project's Dockerfile. Could you provide me with a Dockerfile.
The text was updated successfully, but these errors were encountered: