25 lines
439 B
Docker
25 lines
439 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y python3.10 python3-pip && \
|
|
pip3 install --upgrade pip
|
|
|
|
RUN pip3 install kaggle
|
|
RUN pip3 install pandas
|
|
RUN pip3 install scikit-learn
|
|
RUN pip3 install tensorflow==2.12.*
|
|
|
|
#RUN apt install python3.10-venv -y
|
|
#RUN python3 -m venv docker_ium
|
|
|
|
|
|
|
|
COPY . /app
|
|
WORKDIR /app
|
|
|
|
#RUN python3 -m pip install pandas
|
|
|
|
#RUN pip3 install tensorflow==2.12.*
|
|
|
|
|