12 lines
206 B
Docker
12 lines
206 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
RUN pip3 install pandas
|
|
RUN pip3 install kaggle
|
|
|
|
WORKDIR /ium-478831
|
|
|
|
COPY ./adult-income-dataset.csv ./
|
|
COPY ./script.sh ./
|
|
|
|
CMD ./script.sh |