dockerfiles

This commit is contained in:
mikaleta-mbm 2023-09-28 21:52:51 +02:00
parent d3d4a62428
commit 4fdfd852b6
3 changed files with 13 additions and 1 deletions

View File

@ -1,4 +1,6 @@
FROM python:latest FROM python:latest
RUN apt-get update && apt-get install -y RUN apt-get update && apt-get install -y
RUN pip install pandas RUN pip install pandas
RUN pip install scikit-learn RUN pip install scikit-learn
RUN pip install tensorflow
RUN pip install matplotlib

View File

@ -0,0 +1,5 @@
FROM continuumio/anaconda3:latest
RUN apt-get update && apt-get install -y
RUN pip install pandas

5
dataset_stats.dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM continuumio/anaconda3:latest
RUN apt-get update && apt-get install -y
RUN pip install pandas