18 lines
303 B
Docker
18 lines
303 B
Docker
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 pip install pandas
|
|
RUN pip install -U scikit-learn
|
|
RUN pip install tensorflow==2.12.*
|
|
|
|
|