2021-04-12 00:31:59 +02:00
|
|
|
FROM ubuntu:latest
|
|
|
|
|
|
|
|
RUN apt update
|
|
|
|
RUN apt install -y python3 python3-pip
|
|
|
|
RUN apt install -y curl
|
|
|
|
|
2021-05-16 16:18:20 +02:00
|
|
|
RUN pip3 install pandas
|
|
|
|
RUN pip3 install matplotlib
|
|
|
|
RUN pip3 install numpy
|
|
|
|
RUN pip3 install tensorflow
|
|
|
|
RUN pip3 install sklearn
|
2021-04-12 00:31:59 +02:00
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY ./preparations.sh ./
|
|
|
|
COPY ./preprocesing_python.py ./
|
2021-05-08 23:47:37 +02:00
|
|
|
COPY ./training.py ./
|
2021-04-12 00:31:59 +02:00
|
|
|
|
|
|
|
# CMD ./preparations.sh
|