ium_s434700/Dockerfile
2021-05-26 18:44:05 +02:00

15 lines
342 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
COPY ./requirements.txt ./
RUN pip install -r ./requirements.txt
ENV PATH="/root/.local/bin:/.local/bin:${PATH}"
RUN mkdir /.kaggle
RUN chmod -R 777 /.kaggle