disabled local caching to reduce image size

This commit is contained in:
Brian Bjarke Jensen
2025-09-23 15:06:18 +02:00
parent 083245793a
commit a0ed61549e
+2 -1
View File
@@ -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" ]