Change-Id: I9dd213143e62466edb4d81fe224c348606b40e17
Signed-off-by: tierno <alfonso.tiernosepulveda@telefonica.com>
FROM ubuntu:16.04
# Set the working directory to /app
-WORKDIR /app/LCM/osm_lcm
+WORKDIR /app/LCM
RUN apt-get update && apt-get install -y git tox python3 \
python3-pip python3-aiohttp python3-jinja2 \
ADD . /app/LCM
# Run app.py when the container launches
-CMD ["python3", "lcm.py"]
+CMD python3 -m osm_lcm.lcm
# HEALTHCHECK --interval=120s --timeout=15s --retries=1 \
-# CMD python3 lcm.py --health-check || exit 1
+# CMD python3 -m osm_lcm.lcm --health-check || exit 1