17 lines
327 B
Docker
17 lines
327 B
Docker
FROM ubuntu:latest
|
|
|
|
RUN apt-get update --fix-missing
|
|
RUN apt-get -y install python3-pip
|
|
RUN apt-get -y install nano
|
|
|
|
RUN pip3 install --user pandas
|
|
RUN pip3 install --user numpy
|
|
RUN pip3 install --user sklearn
|
|
|
|
WORKDIR /dataset
|
|
COPY ./script.py ./
|
|
COPY ./imdb_top_1000.csv ./
|
|
|
|
CMD python3 ./script.py
|
|
CMD echo 'Exiting docker'
|