ium_434788/Zajęcia4/Dockerfile
2021-04-08 17:01:17 +02:00

19 lines
704 B
Docker

# Nasz obraz będzie dzidziczył z obrazu Ubuntu w wersji latest
FROM ubuntu:latest
# Instalujemy niezbędne zależności. Zwróć uwagę na flagę "-y" (assume yes)
RUN apt update && apt install -y git
RUN apt install -y python3-pip
RUN apt install -y curl
RUN pip3 install --user kaggle
RUN pip3 install --user seaborn
RUN pip3 install --user sklearn
RUN pip3 install --user pandas
RUN pip3 install --user matplotlib
# 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
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
COPY ./test.sh ./
COPY ./IUM_1_434788.ipynb ./