ium_478831/Dockerfile

12 lines
206 B
Docker
Raw Permalink Normal View History

2022-04-03 20:31:12 +02:00
FROM ubuntu:latest
RUN apt update && apt install -y python3-pip
RUN pip3 install pandas
RUN pip3 install kaggle
2022-04-03 21:16:41 +02:00
WORKDIR /ium-478831
2022-04-03 20:31:12 +02:00
COPY ./adult-income-dataset.csv ./
COPY ./script.sh ./
CMD ./script.sh