dockerfile
This commit is contained in:
parent
3452520ae1
commit
1d4b599ab4
14
ium_05/dockerfile
Normal file
14
ium_05/dockerfile
Normal file
@ -0,0 +1,14 @@
|
||||
# Nasz obraz będzie dziedziczył 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 figlet python3 python3-pip
|
||||
|
||||
# Instalacja pakietów Pythona za pomocą PIP
|
||||
RUN pip3 install pandas kaggle torch sklearn
|
||||
|
||||
# Dodajemy nasz skrypt Pythona do obrazu Docker
|
||||
COPY learning.ipynb /learning.ipynb
|
||||
|
||||
# Ustawiamy domyślną komendę do uruchomienia naszego skryptu Pythona
|
||||
CMD ["python3", "/learning.ipynb"]
|
Loading…
Reference in New Issue
Block a user