ium_444417/Dockerfile
2022-04-03 17:31:07 +02:00

26 lines
908 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
RUN apt-get install -y python3
RUN apt-get install -y unzip
RUN apt-get install -y python3-pip
RUN python3 -m pip install --user kaggle
RUN python3 -m pip install --user pandas
RUN ln -s ~/.local/bin/kaggle /usr/bin/kaggle
RUN pip show pandas
# 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 ./startscript1.sh ./
COPY ./src/task1python.py ./src/task1python.py
# Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
# RUN chmod u+x ./startscript1.sh
# RUN chmod u+x ./src/task1python.py