8 lines
179 B
Docker
8 lines
179 B
Docker
FROM python:3.7
|
|
RUN apt update
|
|
RUN apt install python3-numpy
|
|
RUN apt install python-pandas
|
|
RUN pip install requests
|
|
RUN pip install tensorflow
|
|
RUN pip install -r requirements.txt
|