diff --git a/README.md b/README.md index e7ef09be63d0c53f4fd5f146f027c6e586ea279f..5eb0566cd56534894a692b6c8364020856c53161 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,22 @@ -# qa-tools +# Q&A Tools Base Image +Define a base image to use in the different CI stages for Odoo addons. + +This image by itself does nothing. + +What is defined: +- A user (`qa-tools`) that runs the command +- A python virtualenv for python 3.7 +- The `workdir` (`/project`) + +What is required: +- A `requirements.txt` (without it the build process will fail) +- A `Dockerfile` (see below) + +```docker +FROM docker.ecoservice.de/cicd/qa-tools + +COPY + +ENTRYPOINT +```