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
|
|
|
|
|
|
|
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-05-25 18:02:38 +02:00
|
|
|
ENV PATH="/root/.local/bin:/.local/bin:${PATH}"
|
|
|
|
ENV PYTHONPATH="/usr/lib/python35.zip:/usr/lib/python3.5:/usr/lib/python3.5/plat-x86_64-linux-gnu:/usr/lib/python3.5/lib-dynload:/.local/lib/python3.5/site-packages:/usr/local/lib/python3.5/dist-packages:/usr/lib/python3/dist-packages:${PYTHONPATH}"
|
|
|
|
|
2021-04-26 06:17:28 +02:00
|
|
|
COPY ./data.sh /home/data/data.sh
|
|
|
|
COPY ./ml.py /home/data/ml.py
|