16 lines
303 B
Docker
16 lines
303 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update && apt install -y python3-pip
|
|
#RUN pip3 install kaggle
|
|
RUN pip3 install pandas
|
|
RUN pip3 install sklearn
|
|
RUN pip3 install seaborn
|
|
RUN pip3 install ipython
|
|
RUN apt-get install unzip
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
COPY ./travel-insurance-prediction-data.zip ./
|
|
COPY ./preparation.py ./
|