15 lines
216 B
Docker
15 lines
216 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 ./
|
||
|
|
||
|
RUN pip3 install pandas
|
||
|
RUN pip3 install numpy
|
||
|
|
||
|
|
||
|
CMD python3 data_expl.py
|