ium_444517/Dockerfile
Kamila 723767f306
All checks were successful
s444517-evaluation/pipeline/head This commit looks good
Docker - matplotlib
2022-05-03 13:11:56 +02:00

20 lines
365 B
Docker

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 ./
RUN pip3 install pandas
RUN pip3 install numpy
RUN pip3 install matplotlib
RUN pip3 install tensorflow
RUN pip3 install keras
RUN pip3 install sklearn
CMD python3 data_expl.py
CMD python3 nn_train.py