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-26 18:44:05 +02:00
|
|
|
COPY ./requirements.txt ./
|
|
|
|
RUN pip install -r ./requirements.txt
|
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-05-25 18:23:53 +02:00
|
|
|
RUN mkdir /.kaggle
|
|
|
|
RUN chmod -R 777 /.kaggle
|