FROM python:latest
ENV PYTHONUNBUFFERED 1
RUN mkdir /mlmodel
WORKDIR /mlmodel
COPY requirements.txt /mlmodel
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
COPY . /mlmodel
RUN export MLFLOW_TRACKING_URI="sqlite:///mlruns.db"
EXPOSE 5000
#RUN [ "python3", "run.py" ]
RUN ["mlflow models serve -m models:/SentimentAnalysis/latest -p 5000 --no-conda"]
I am getting above error after docker compose build . I am trying to build a docker image.