10 lines
217 B
Docker
10 lines
217 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
RUN pacman -S python --noconfirm
|
|
RUN pacman -S python-pip --noconfirm
|
|
|
|
RUN pip install --user kaggle
|
|
RUN pip install --user pandas
|
|
|
|
COPY ./data.sh /home/data/data.sh |