From 4fdfd852b642f9b2380ba53efb83ea825217087a Mon Sep 17 00:00:00 2001 From: mikaleta-mbm Date: Thu, 28 Sep 2023 21:52:51 +0200 Subject: [PATCH] dockerfiles --- Dockerfile | 4 +++- create_dataset.dockerfile | 5 +++++ dataset_stats.dockerfile | 5 +++++ 3 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 create_dataset.dockerfile create mode 100644 dataset_stats.dockerfile diff --git a/Dockerfile b/Dockerfile index 1990df4..257314d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ FROM python:latest RUN apt-get update && apt-get install -y RUN pip install pandas -RUN pip install scikit-learn \ No newline at end of file +RUN pip install scikit-learn +RUN pip install tensorflow +RUN pip install matplotlib \ No newline at end of file diff --git a/create_dataset.dockerfile b/create_dataset.dockerfile new file mode 100644 index 0000000..df32131 --- /dev/null +++ b/create_dataset.dockerfile @@ -0,0 +1,5 @@ +FROM continuumio/anaconda3:latest + +RUN apt-get update && apt-get install -y + +RUN pip install pandas diff --git a/dataset_stats.dockerfile b/dataset_stats.dockerfile new file mode 100644 index 0000000..f20e931 --- /dev/null +++ b/dataset_stats.dockerfile @@ -0,0 +1,5 @@ +FROM continuumio/anaconda3:latest + +RUN apt-get update && apt-get install -y + +RUN pip install pandas \ No newline at end of file