Skip to content
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

DockerFile #2

Open
lw20191012 opened this issue Nov 16, 2023 · 1 comment
Open

DockerFile #2

lw20191012 opened this issue Nov 16, 2023 · 1 comment

Comments

@lw20191012
Copy link

How can I containerize Kenning? I couldn't find the project's Dockerfile. Could you provide me with a Dockerfile.

@RafaelFigueiredo
Copy link

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants