Add Dockerfile
This commit is contained in:
parent
852376b0c9
commit
0f42cff4e1
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Użyj obrazu Ubuntu jako bazowego
|
||||||
|
FROM ubuntu:latest
|
||||||
|
|
||||||
|
# Aktualizuj paczki i zainstaluj Python oraz pip
|
||||||
|
RUN apt update && \
|
||||||
|
apt install -y python3 python3-pip
|
||||||
|
|
||||||
|
# Zainstaluj potrzebne biblioteki Pythona
|
||||||
|
RUN pip3 install --user kaggle pandas
|
||||||
|
|
||||||
|
# Ustaw katalog roboczy
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
# Skopiuj skrypty
|
||||||
|
COPY IUM_02_Dane.ipynb /app/
|
||||||
|
|
||||||
|
# Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
|
||||||
|
CMD ["python3", "IUM_02_Dane.ipynb"]
|
Loading…
Reference in New Issue
Block a user