FROM ubuntu:latest ENV KAGGLE_USERNAME=gulczas ENV KAGGLE_KEY=default_key RUN apt-get update && \ apt-get install -y \ python3 \ python3-pip \ wget \ unzip \ && rm -rf /var/lib/apt/lists/* RUN pip3 install pandas scikit-learn requests kaggle numpy WORKDIR /app COPY model_creator.py /app/ COPY use_model.py /app/ COPY run_py_scripts.sh /app/ RUN chmod +x model_creator.py RUN chmod +x use_model.py CMD ["bash", "run_py_scripts.sh"]