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
|
2021-05-25 17:52:27 +02:00
|
|
|
RUN pacman -S bc --noconfirm
|
|
|
|
RUN pacman -S unzip --noconfirm
|
2021-04-11 19:37:22 +02:00
|
|
|
|
2021-05-25 18:07:09 +02:00
|
|
|
RUN pip install 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-05-25 18:02:38 +02:00
|
|
|
ENV PATH="/root/.local/bin:/.local/bin:${PATH}"
|
|
|
|
|
2021-04-26 06:17:28 +02:00
|
|
|
COPY ./data.sh /home/data/data.sh
|
2021-05-25 18:23:53 +02:00
|
|
|
COPY ./ml.py /home/data/ml.py
|
|
|
|
|
|
|
|
RUN mkdir /.kaggle
|
|
|
|
RUN chmod -R 777 /.kaggle
|