Merge "Set absolute path for docker entrypoint"

This commit is contained in:
Zuul 2019-01-03 00:56:37 +00:00 committed by Gerrit Code Review
commit 70e731f8a1
2 changed files with 2 additions and 2 deletions

View File

@ -21,5 +21,5 @@ COPY . /opt/dragonflow/
WORKDIR /opt/dragonflow
RUN pip install -e .
ENTRYPOINT ["./tools/run_dragonflow.sh"]
ENTRYPOINT ["/opt/dragonflow/tools/run_dragonflow.sh"]

View File

@ -17,5 +17,5 @@ COPY . /opt/dragonflow/
WORKDIR /opt/dragonflow
RUN pip install -e .
ENTRYPOINT ["./tools/run_dragonflow.sh"]
ENTRYPOINT ["/opt/dragonflow/tools/run_dragonflow.sh"]