2022-04-08 10:11:54 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
|
|
#RUN pip3 install kaggle
|
|
|
|
RUN pip3 install pandas
|
2022-04-10 11:27:52 +02:00
|
|
|
RUN pip3 install sklearn
|
|
|
|
RUN pip3 install seaborn
|
2022-04-08 10:11:54 +02:00
|
|
|
RUN apt-get install unzip
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
|
|
COPY ./travel-insurance-prediction-data.zip ./
|
2022-04-10 11:27:52 +02:00
|
|
|
COPY ./preparation.py ./
|