Kaggle + Docker (attempt 3)

This commit is contained in:
Paweł Skórzewski 2024-04-03 09:10:55 +02:00
parent 35edc4b46b
commit 014f716c98
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ FROM ubuntu:latest
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
RUN apt update && apt install -y python3-pip
RUN pip3 install --user datasets
RUN pip3 install --user datasets kaggle
# Stwórzmy w kontenerze (jeśli nie istnieje) katalog /app i przejdźmy do niego (wszystkie kolejne polecenia RUN, CMD, ENTRYPOINT, COPY i ADD będą w nim wykonywane)
WORKDIR /app