16 lines
245 B
Docker
16 lines
245 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update
|
|
RUN apt install -y python3.8
|
|
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 |