Upload files to ''

This commit is contained in:
Wojciech Mikołajski 2023-04-18 20:34:49 +02:00
parent c1290e5421
commit 7617e7a515

20
Dockerfile Normal file
View File

@ -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