2022-04-03 10:54:43 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y python3-pip
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./data_expl.py ./
|
|
|
|
COPY ./googleplaystore.csv ./
|
2022-04-19 16:17:09 +02:00
|
|
|
COPY ./nn_train.py ./
|
2022-04-03 10:54:43 +02:00
|
|
|
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install numpy
|
2022-05-03 13:11:56 +02:00
|
|
|
RUN pip3 install matplotlib
|
2022-04-19 16:17:09 +02:00
|
|
|
RUN pip3 install tensorflow
|
|
|
|
RUN pip3 install keras
|
|
|
|
RUN pip3 install sklearn
|
2022-05-05 20:05:14 +02:00
|
|
|
RUN pip3 install pymongo
|
|
|
|
RUN pip3 install sacred
|
2022-04-03 10:54:43 +02:00
|
|
|
|
2022-04-19 16:17:09 +02:00
|
|
|
CMD python3 data_expl.py
|
|
|
|
CMD python3 nn_train.py
|