8 lines
156 B
Docker
8 lines
156 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
|