Currently readme only mentioned "test" in this command
docker run -v $PWD:/paddle -e "GPU=OFF" -e "AVX=ON" -e "TEST=ON" paddle:dev
But there is no explanation about how will the test be performed. E.g., will the test run during building docker image paddle:dev, or later when paddle is building the final output image.
Current implementation is paddle will run test inside paddle:dev image, which is incorrect. Since the environment maybe different from the final image. Actually I encountered this problem: the test fails in paddle:dev since the numpy version for paddle:dev is too old, but the numpy version is good in the final produced image.
Currently readme only mentioned "test" in this command
But there is no explanation about how will the test be performed. E.g., will the test run during building docker image
paddle:dev, or later when paddle is building the final output image.Current implementation is paddle will run test inside
paddle:devimage, which is incorrect. Since the environment maybe different from the final image. Actually I encountered this problem: the test fails inpaddle:devsince the numpy version forpaddle:devis too old, but the numpy version is good in the final produced image.