2023-04-19 19:43:47 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt-get install -y python3-pip
|
2023-04-19 21:37:40 +02:00
|
|
|
WORKDIR /app
|
2023-04-19 19:43:47 +02:00
|
|
|
|
|
|
|
RUN pip install pandas
|
|
|
|
RUN pip install scikit-learn
|
|
|
|
RUN pip install datasets
|
|
|
|
RUN pip install torch
|
2023-04-19 21:37:40 +02:00
|
|
|
RUN pip install seaborn
|
2023-06-28 13:31:49 +02:00
|
|
|
RUN pip install mlflow
|
2023-04-19 21:37:40 +02:00
|
|
|
COPY ./zad1.py ./
|
2023-07-24 21:12:04 +02:00
|
|
|
CMD ["python3", "zad1.py"]
|