onap-python
This Dockerfile aims to generate a baseline image for ONAP 1 projects based on SECCOM recommendations 2.
It includes:
- python 3.8.2
- pip3
Due to the ONBUILD directive, each project must provide a requirements.txt file before building an image derived from this baseline image. Without this requirements.txt file, the docker built will fail. The pip install -r requirements.txt will be executed on the build of your image.
An example of Dockerfile consuming this base line image could be:
FROM nexus3.onap.org:10001/onap/integration-python
RUN echo "Add your specifc docker needs here."