6 lines
89 B
Docker
6 lines
89 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
RUN pip install pandas
|