6 lines
97 B
Docker
6 lines
97 B
Docker
FROM ubuntu:20.04
|
|
|
|
RUN apt update
|
|
RUN apt install -y python3 python3-pip
|
|
RUN pip install mlflow
|