20 lines
448 B
Docker
20 lines
448 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 --user pandas
|
|
RUN pip install --user torch
|
|
RUN pip install --user keras
|
|
RUN pip install --user tensorflow
|
|
RUN pip install --user scikit-learn
|
|
|
|
# RUN echo "alias kaggle='~/.local/bin/kaggle'" >> ~/.bashrc
|
|
|
|
COPY ./learning.py ./
|
|
|
|
# CMD ./script.sh 300
|
|
# CMD ./learning.pyRUN pip install --user numpy
|