7 lines
118 B
Docker
7 lines
118 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python3 python3-pip
|
|
|
|
RUN pip3 install pandas numpy
|