9 lines
183 B
Docker
9 lines
183 B
Docker
FROM continuumio/anaconda3:latest
|
|
|
|
RUN apt-get update && apt-get install -y
|
|
|
|
RUN pip install pandas
|
|
RUN pip install scikit-learn
|
|
RUN pip install tensorflow
|
|
RUN pip install matplotlib
|