mlflow-server / Dockerfile
antoinekrajnc's picture
simplify docker image
f844fb7
raw
history blame
480 Bytes
FROM continuumio/miniconda3
WORKDIR /home/app
RUN apt-get update
RUN apt-get install nano
RUN apt install curl -y
COPY requirements.txt /dependencies/requirements.txt
RUN pip install -r /dependencies/requirements.txt
CMD ["bash","-c","mlflow server \
--host 0.0.0.0 \
--port ${PORT} \
--backend-store-uri ${BACKEND_STORE_URI} \
--default-artifact-root ${ARTIFACT_STORE_URI} \
--serve-artifacts \
--allowed-hosts '*' \
--cors-allowed-origins '*' "]