2023-05-24 14:14:58 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt-get update --fix-missing
|
|
|
|
RUN apt install python3-pip -y
|
|
|
|
RUN apt install unzip -y
|
|
|
|
RUN apt install git -y
|
|
|
|
|
2023-05-24 15:58:36 +02:00
|
|
|
RUN pip install numpy
|
|
|
|
RUN pip install pandas
|
|
|
|
RUN pip install torch
|
|
|
|
RUN pip install keras
|
|
|
|
RUN pip install tensorflow
|
|
|
|
RUN pip install scikit-learn
|
2023-05-24 14:14:58 +02:00
|
|
|
|
|
|
|
# RUN echo "alias kaggle='~/.local/bin/kaggle'" >> ~/.bashrc
|
|
|
|
|
2023-05-24 14:34:42 +02:00
|
|
|
COPY ./learning.py ./
|
2023-05-24 14:14:58 +02:00
|
|
|
|
|
|
|
# CMD ./script.sh 300
|
|
|
|
# CMD ./learning.pyRUN pip install --user numpy
|