gedin
41c655024d
Some checks failed
s470618-evaluation/pipeline/head There was a failure building this commit
21 lines
435 B
Docker
21 lines
435 B
Docker
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
|
|
|
|
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
|
|
|
|
# RUN echo "alias kaggle='~/.local/bin/kaggle'" >> ~/.bashrc
|
|
|
|
COPY ./learning.py ./
|
|
|
|
# CMD ./script.sh 300
|
|
# CMD ./learning.pyRUN pip install --user numpy
|