starting container process caused: exec: "uvicorn": executable file not found in $PATH: unknown – Docker
I'm trying to Dockerize my FastApi app, but it crashes with this error right after I run the command: docker-compose -f local.yml up -d Can anyone help me, please? Dockerfile: FROM python:3.6.11-alpine3.11 ARG MYSQL_SERVER ARG POSTGRES_SERVER ENV ENVTYPE=local ENV PYTHONUNBUFFERED…