Dockerfile dependencies fix

This commit is contained in:
Filip Izydorczyk 2021-05-26 18:39:53 +02:00
parent 2a786ba4db
commit 8448f51272

View File

@ -7,11 +7,11 @@ 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
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}"