2023-05-11 20:49:42 +02:00
|
|
|
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
|
|
|
|
|
2023-05-12 15:40:20 +02:00
|
|
|
RUN apt install python3.10-venv -y
|
2023-05-11 22:43:22 +02:00
|
|
|
RUN python3 -m venv docker_ium
|
2023-05-12 15:40:20 +02:00
|
|
|
CMD source docker_ium/bin/activate
|
2023-05-11 22:43:22 +02:00
|
|
|
|
|
|
|
RUN pip3 install pandas
|
2023-05-12 15:40:20 +02:00
|
|
|
RUN pip3 install -U scikit-learn
|
|
|
|
RUN pip install tensorflow==2.12.*
|
2023-05-11 20:49:42 +02:00
|
|
|
|
2023-05-12 15:40:20 +02:00
|
|
|
CMD deactivate
|