17 lines
316 B
Docker
17 lines
316 B
Docker
|
FROM ubuntu:latest
|
||
|
|
||
|
WORKDIR /ium
|
||
|
|
||
|
RUN apt update && apt install -y python3-pip
|
||
|
|
||
|
RUN pip3 install pandas
|
||
|
RUN pip3 install numpy
|
||
|
RUN pip3 install sklearn
|
||
|
RUN pip3 install tensorflow
|
||
|
RUN pip3 install matplotlib
|
||
|
RUN pip3 install keras
|
||
|
|
||
|
COPY ./lego_sets.csv ./
|
||
|
COPY ./process_dataset.py ./
|
||
|
COPY ./simple_regression.py ./
|