ium_434784/Dockerfile

20 lines
384 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
RUN pip3 install --user pandas
RUN pip3 install --user matplotlib
RUN pip3 install --user numpy
2021-05-08 23:47:37 +02:00
RUN pip3 install --user tensorflow
RUN pip3 install --user 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