19 lines
418 B
Docker
19 lines
418 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 pandas
|
|
RUN pip install torch
|
|
RUN pip install numpy
|
|
RUN pip install matplotlib
|
|
RUN pip install seaborn
|
|
|
|
ENV PATH="/root/.local/bin:/.local/bin:${PATH}"
|
|
|
|
RUN mkdir /.kaggle
|
|
RUN chmod -R 777 /.kaggle |