dockerfile
This commit is contained in:
parent
11727219ed
commit
4210268918
19
Dockerfile
Normal file
19
Dockerfile
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# 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 figlet
|
||||||
|
RUN apt install -y git
|
||||||
|
RUN apt install -y python3-pip
|
||||||
|
RUN pip3 install --user kaggle
|
||||||
|
RUN pip3 install --user pandas
|
||||||
|
RUN pip3 install --user seaborn
|
||||||
|
RUN pip3 install --user sklearn
|
||||||
|
RUN pip3 install --user matplotlib
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
COPY ./skrypt.sh ./
|
||||||
|
COPY ./zadanie2.py ./
|
||||||
|
|
||||||
|
CMD ./zadanie2.py
|
Loading…
Reference in New Issue
Block a user