Add Dockerfile2
This commit is contained in:
parent
fe20bacbfc
commit
c693a87107
20
Dockerfile2
Normal file
20
Dockerfile2
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# 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 Biblioteka_DL_trenowanie.ipynb /app/
|
||||||
|
|
||||||
|
# Domyślne polecenie, które zostanie uruchomione w kontenerze po jego starcie
|
||||||
|
CMD ["python3", "Biblioteka_DL_trenowanie.ipynb"]
|
||||||
|
|
||||||
|
CMD ["sh", "-c", "sleep 5"]
|
Loading…
Reference in New Issue
Block a user