ium_s434700/Dockerfile
2021-04-26 06:17:28 +02:00

15 lines
371 B
Docker

FROM archlinux:latest
RUN pacman -Syu --noconfirm
RUN pacman -S python --noconfirm
RUN pacman -S python-pip --noconfirm
RUN pip install --user kaggle
RUN pip install --user pandas
RUN pip install --user torch
RUN pip install --user numpy
RUN pip install --user matplotlib
RUN pip install --user seaborn
COPY ./data.sh /home/data/data.sh
COPY ./ml.py /home/data/ml.py