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
|
|
|
|
|
2023-05-14 13:20:32 +02:00
|
|
|
RUN pip3 install kaggle
|
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install scikit-learn
|
2023-05-14 13:43:07 +02:00
|
|
|
RUN pip3 install tensorflow==2.12.*
|
2023-05-12 22:02:43 +02:00
|
|
|
|
2023-05-12 22:08:22 +02:00
|
|
|
#RUN apt install python3.10-venv -y
|
2023-05-12 22:02:43 +02:00
|
|
|
#RUN python3 -m venv docker_ium
|
|
|
|
|
|
|
|
|
2023-05-11 20:49:42 +02:00
|
|
|
|
|
|
|
COPY . /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
2023-05-12 21:52:39 +02:00
|
|
|
#RUN python3 -m pip install pandas
|
|
|
|
|
2023-05-12 21:35:09 +02:00
|
|
|
#RUN pip3 install tensorflow==2.12.*
|
2023-05-11 20:49:42 +02:00
|
|
|
|
2023-05-12 20:46:44 +02:00
|
|
|
|