From: aguilard Date: Tue, 18 Apr 2023 16:25:19 +0000 (+0000) Subject: Feature 10981: fix CMD in webhook Dockerfile X-Git-Tag: release-v14.0-start~81 X-Git-Url: https://osm.etsi.org/gitweb/?a=commitdiff_plain;h=cb9bb7a66ce49050e2ea005276f7d342673bbcc6;p=osm%2Fdevops.git Feature 10981: fix CMD in webhook Dockerfile Change-Id: If8332c12c2f065c0a4d195873e24a98aa34b0ed4 Signed-off-by: aguilard --- diff --git a/docker/Webhook/Dockerfile b/docker/Webhook/Dockerfile index 1205fbc5..73e1bd07 100644 --- a/docker/Webhook/Dockerfile +++ b/docker/Webhook/Dockerfile @@ -58,6 +58,7 @@ RUN rm -f /etc/apt/apt.conf.d/proxy.conf 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 @@ USER appuser 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"]