2021-04-11 19:37:22 +02:00
|
|
|
FROM archlinux:latest
|
|
|
|
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
|
|
RUN pacman -S python --noconfirm
|
|
|
|
RUN pacman -S python-pip --noconfirm
|
|
|
|
|
|
|
|
RUN pip install --user kaggle
|
2021-04-25 14:07:14 +02:00
|
|
|
RUN pip install --user pandas
|
2021-04-26 06:17:28 +02:00
|
|
|
RUN pip install --user torch
|
|
|
|
RUN pip install --user numpy
|
|
|
|
RUN pip install --user matplotlib
|
|
|
|
RUN pip install --user seaborn
|
2021-04-25 14:07:14 +02:00
|
|
|
|
2021-04-26 06:17:28 +02:00
|
|
|
COPY ./data.sh /home/data/data.sh
|
|
|
|
COPY ./ml.py /home/data/ml.py
|