Zaktualizuj 'Docker/Dockerfile'

This commit is contained in:
Szymon Parafiński 2022-03-30 09:28:20 +02:00
parent efb2c12246
commit 4178874402

View File

@ -3,8 +3,8 @@ FROM ubuntu:latest
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes) # Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
RUN apt-get update RUN apt-get update
RUN apt-get install -y python-pip RUN apt-get -y install python3-pip
RUN apt-get install -y nano RUN apt-get -y install nano
RUN pip install --user kaggle RUN pip install --user kaggle
RUN pip install --user pandas RUN pip install --user pandas