ium_s434700/Dockerfile
Filip Izydorczyk 2a786ba4db Dockerfile fix
2021-05-26 18:38:28 +02:00

19 lines
453 B
Docker

FROM archlinux:latest
RUN pacman -Syu --noconfirm
RUN pacman -S python --noconfirm
RUN pacman -S python-pip --noconfirm
RUN pacman -S bc --noconfirm
RUN pacman -S unzip --noconfirm
RUN pip install 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
ENV PATH="/root/.local/bin:/.local/bin:${PATH}"
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle