diff options
author | Asteroide <thomas.duval@orange.com> | 2018-02-19 15:34:12 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-02-19 15:34:12 +0000 |
commit | e36a301b551e454ea8c28aa2beefd8f535d8f6fe (patch) | |
tree | c5e7fae4158b6c33b029a5397021e16731ace6d8 /moon_pythonfunctest/Dockerfile | |
parent | f4c44ba00f07c75099fbf0316c9e3bc53b83f30d (diff) | |
parent | b38ecccb8ab9cd1e631f89c92f6b88e420b2a1b0 (diff) |
Merge "Add the moon_pythonfunctest container to perform functionnal tests"
Diffstat (limited to 'moon_pythonfunctest/Dockerfile')
-rw-r--r-- | moon_pythonfunctest/Dockerfile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/moon_pythonfunctest/Dockerfile b/moon_pythonfunctest/Dockerfile new file mode 100644 index 00000000..8ae093b8 --- /dev/null +++ b/moon_pythonfunctest/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3 + +WORKDIR /usr/src/app +RUN pip install --no-cache-dir --upgrade requests pytest pyyaml python_moonutilities python_moondb python_moonclient + +ADD . /root +WORKDIR /root + +CMD /bin/bash /root/run_func_test.sh |