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 \ && pip install --user kaggle \ && pip install --user pandas \ && pip install --user plotly \ && pip install --user seaborn \ && pip install --user scikit-learn ENV PATH="/root/.local/bin:$PATH" WORKDIR /app RUN git clone https://git.wmi.amu.edu.pl/s487178/ium_s487178.git /app #CMD ["python3", "body_performance.py"]