13 lines
273 B
Docker
13 lines
273 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt-get install -y python3-pip
|
|
WORKDIR /app
|
|
|
|
RUN pip install pandas
|
|
RUN pip install scikit-learn
|
|
RUN pip install datasets
|
|
RUN pip install torch
|
|
RUN pip install seaborn
|
|
RUN pip install mlflow
|
|
COPY ./zad1.py ./
|
|
CMD ["python3", "zad1.py"] |