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 && \
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"]