32 lines
1.0 KiB
Docker
32 lines
1.0 KiB
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 kaggle
|
|
RUN python3 -m pip install pandas
|
|
|
|
RUN ln -s ~/.local/bin/kaggle /usr/bin/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
|
|
|
|
# Skopiujmy nasz skrypt do katalogu /app w kontenerze
|
|
COPY ./startscript1.sh ./
|
|
COPY ./src/task1python.py ./src/task1python.py
|
|
COPY ./src/pythonTest.py ./src/pythonTest.py
|
|
|
|
|
|
RUN chmod +x ./startscript1.sh
|
|
RUN ./startscript1.sh
|
|
|
|
RUN chmod a+x ./src/task1python.py
|
|
RUN chmod a+x ./src/pythonTest.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 |