diff options
author | Thomas Duval <thomas.duval@orange.com> | 2017-11-22 11:26:41 +0100 |
---|---|---|
committer | Thomas Duval <thomas.duval@orange.com> | 2017-11-22 11:26:41 +0100 |
commit | dcf2ce1b8cd039b3a13e7c70ef94ce968ffc4de0 (patch) | |
tree | 5bf8e2a2071525c28f76b99a0e1eec8945528a66 /moonv4/templates/moonforming/Dockerfile | |
parent | cb739df188d2c7c465a3d4fbc857c6417e2a3073 (diff) |
Add waiting code for Keystone, re-add the ability to connect a PDP to the "admin" Keystone project and fix some bugs
Change-Id: Ic3afdb1306a72bd09f9071e96aabfae602153e94
Diffstat (limited to 'moonv4/templates/moonforming/Dockerfile')
-rw-r--r-- | moonv4/templates/moonforming/Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/moonv4/templates/moonforming/Dockerfile b/moonv4/templates/moonforming/Dockerfile index 3410a5f4..87a067f9 100644 --- a/moonv4/templates/moonforming/Dockerfile +++ b/moonv4/templates/moonforming/Dockerfile @@ -2,7 +2,9 @@ FROM python:3 WORKDIR /usr/src/app RUN pip install --no-cache-dir --upgrade requests pyyaml moon_utilities moon_db +ENV POPULATE_ARGS "-v" + ADD . /root WORKDIR /root -CMD ["sh", "/root/run.sh" ]
\ No newline at end of file +CMD sh /root/run.sh ${POPULATE_ARGS}
\ No newline at end of file |