Change Dockerfile
This commit is contained in:
parent
99e2357b36
commit
5433233dcd
|
@ -1,3 +1,5 @@
|
||||||
FROM ghcr.io/mlflow/mlflow:v2.7.0
|
FROM python:3.10-slim
|
||||||
|
COPY requirements.txt .
|
||||||
RUN pip install psycopg2-binary boto3
|
RUN pip install -r requirements.txt
|
||||||
|
EXPOSE 5000
|
||||||
|
ENTRYPOINT ["mlflow", "server"]
|
|
@ -0,0 +1,3 @@
|
||||||
|
mlflow==2.7.0
|
||||||
|
psycopg2-binary==2.9.9
|
||||||
|
boto3==1.33.3
|
Loading…
Reference in New Issue