ium_434784/Dockerfile

23 lines
398 B
Docker
Raw Normal View History

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:34:56 +02:00
RUN pip3 install --upgrade pip
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 ./
2021-05-16 21:06:46 +02:00
COPY ./preprocesing.py ./
2021-05-08 23:47:37 +02:00
COPY ./training.py ./
2021-05-16 21:19:00 +02:00
COPY ./evaluation.py ./
2021-04-12 00:31:59 +02:00
# CMD ./preparations.sh