ium_444517/Dockerfile

24 lines
461 B
Docker
Raw Normal View History

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 ./
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
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-05-11 14:31:24 +02:00
RUN pip3 install mlflow
2022-05-15 12:45:13 +02:00
RUN pip3 install torch
2022-04-03 10:54:43 +02:00
CMD python3 data_expl.py
CMD python3 nn_train.py