ium_434784/Dockerfile
Maciej Sobkowiak 19bf9c3fe0
All checks were successful
s434784-training/pipeline/head This commit looks good
Preprocesing python
2021-05-16 21:06:46 +02:00

22 lines
374 B
Docker

FROM ubuntu:latest
RUN apt update
RUN apt install -y python3 python3-pip
RUN apt install -y curl
RUN pip3 install --upgrade pip
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.py ./
COPY ./training.py ./
# CMD ./preparations.sh