diff options
author | xudan <xudan16@huawei.com> | 2017-09-29 03:02:55 -0400 |
---|---|---|
committer | xudan <xudan16@huawei.com> | 2017-09-29 03:02:55 -0400 |
commit | 38335e532b032d3257a545bbe547df6b133d1c16 (patch) | |
tree | ccb2f03b857ba24997c8390919b763da195e884d /docker/Dockerfile | |
parent | 6253966250881c8928db93ec19223b1f136c840a (diff) |
Disable get DB schema in Dockerfile
Dovetail provides files for init local DB.
No need to get schema from opnfv DB when building docker image.
Change-Id: I05fbf4f65f3a94bb3a36fe3c140ad7bff58a4f15
Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index c4b11213..a622f796 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -47,6 +47,6 @@ RUN \ WORKDIR ${REPOS_DIR}/dovetail # get db schema from opnfv sites -RUN mkdir -p ${REPOS_DIR}/dovetail/utils/local_db -ADD get_db_schema.py ${REPOS_DIR}/dovetail/utils/local_db -RUN cd ${REPOS_DIR}/dovetail/utils/local_db && python get_db_schema.py +# RUN mkdir -p ${REPOS_DIR}/dovetail/utils/local_db +# ADD get_db_schema.py ${REPOS_DIR}/dovetail/utils/local_db +# RUN cd ${REPOS_DIR}/dovetail/utils/local_db && python get_db_schema.py |