FROM ubuntu:latest RUN apt-get update && \ apt-get install -y python3.10 python3-pip && \ pip3 install --upgrade pip RUN pip3 install --user kaggle pandas COPY . /app WORKDIR /app RUN apt install python3.10-venv -y RUN python3 -m venv docker_ium CMD source docker_ium/bin/activate RUN pip3 install pandas RUN pip3 install -U scikit-learn RUN pip install tensorflow==2.12.* CMD deactivate