17 lines
351 B
Docker
17 lines
351 B
Docker
FROM ubuntu:latest
|
|
RUN apt update && apt install -y python3-pip
|
|
RUN pip3 install pandas
|
|
RUN pip3 install sklearn
|
|
RUN pip3 install seaborn
|
|
RUN pip3 install ipython
|
|
RUN pip3 install torch
|
|
RUN pip3 install numpy
|
|
RUN pip3 install mlflow
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./training.py ./
|
|
COPY ./training_mlflow.py ./
|
|
COPY ./evaluation.py ./
|
|
COPY ./predict_444501.py ./
|