diff --git a/Dockerfile b/Dockerfile index 3e42e16..521a164 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,6 @@ FROM ghcr.io/mlflow/mlflow:latest -RUN pip install psycopg2-binary +# Use --no-cache-dir to avoid storing pip cache in the image +RUN pip install --no-cache-dir psycopg2-binary ENTRYPOINT [ "mlflow", "server" ]