Feature 10981: fix CMD in webhook Dockerfile
Change-Id: If8332c12c2f065c0a4d195873e24a98aa34b0ed4
Signed-off-by: aguilard <e.dah.tid@telefonica.com>
diff --git a/docker/Webhook/Dockerfile b/docker/Webhook/Dockerfile
index 1205fbc..73e1bd0 100644
--- a/docker/Webhook/Dockerfile
+++ b/docker/Webhook/Dockerfile
@@ -58,6 +58,7 @@
COPY --from=INSTALL /usr/lib/python3/dist-packages /usr/lib/python3/dist-packages
COPY --from=INSTALL /usr/local/lib/python3.8/dist-packages /usr/local/lib/python3.8/dist-packages
+COPY --from=INSTALL /usr/local/bin/uvicorn /usr/local/bin/uvicorn
# Creating the user for the app
RUN groupadd -g 1000 appuser && \
@@ -72,6 +73,6 @@
EXPOSE 9998
-CMD ["uvicorn", "osm_webhook_translator.app.main:app", "--host", "0.0.0.0", "--port", "80"]
+CMD ["uvicorn", "osm_webhook_translator.main:app", "--host", "0.0.0.0", "--port", "80"]