Skip to content

How can I clean project after build the CodeChecker? #3548

Answered by csordasmarton
VladAdGad asked this question in Q&A
Discussion options

You must be logged in to vote

If you are using a virtual env you will be able to build the package but you will not be able to run a container because the venv will be activated only during the build process and not when the container will be created.

We already have a docker image for the web part: https://github.com/Ericsson/codechecker/blob/master/web/docker/Dockerfile
You can check it how we build the CodeChecker.

Instead of creating a virtual env you should install the python requirements in the following way:

RUN apt-get install -qqy --no-install-recommends \
python-dev \
# gcc is needed to build psutil.
gcc \
\
# I…

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by csordasmarton
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #3118 on December 10, 2021 16:25.