Karolina Oparczyk
ba9b25f4c3
Some checks failed
s434765-training/pipeline/head There was a failure building this commit
15 lines
349 B
Docker
15 lines
349 B
Docker
FROM ubuntu:latest
|
|
RUN apt clean
|
|
RUN apt update
|
|
RUN apt install -y python3
|
|
RUN apt install -y python3-pip
|
|
RUN apt install -y unzip
|
|
RUN pip3 install pandas
|
|
RUN pip3 install kaggle
|
|
RUN pip3 install tensorflow
|
|
COPY ./get_data.sh ./
|
|
COPY get_data.py ./
|
|
COPY ./neural_network.sh ./
|
|
COPY ./neural_network.py ./
|
|
RUN mkdir /.kaggle
|
|
RUN chmod -R 777 /.kaggle |