db2f934cae
Some checks reported errors
s434784-training/pipeline/head Something is wrong with the build of this commit
20 lines
349 B
Docker
20 lines
349 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt update
|
|
RUN apt install -y python3 python3-pip
|
|
RUN apt install -y curl
|
|
|
|
RUN pip3 install pandas
|
|
RUN pip3 install matplotlib
|
|
RUN pip3 install numpy
|
|
RUN pip3 install tensorflow
|
|
RUN pip3 install sklearn
|
|
|
|
WORKDIR /app
|
|
|
|
COPY ./preparations.sh ./
|
|
COPY ./preprocesing_python.py ./
|
|
COPY ./training.py ./
|
|
|
|
# CMD ./preparations.sh
|