diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d29bb01 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,20 @@ + +FROM ubuntu:latest + +RUN apt-get update \ + && apt-get install -y git python3 python3-pip curl \ + && curl -O https://bootstrap.pypa.io/get-pip.py \ + && python3 get-pip.py --user \ + && rm get-pip.py \ + && pip3 install --user kaggle \ + && pip3 install --user pandas \ + && pip3 install --user plotly \ + && pip3 install --user seaborn \ + && pip3 install --user scikit-learn + +ENV PATH="/root/.local/bin:$PATH" + +WORKDIR /app + +COPY . /app +