Created
March 3, 2020 10:01
-
-
Save srkiNZ84/f6921872a4c001cf6c5cf1410e529270 to your computer and use it in GitHub Desktop.
Dockerfile to generate docker image with fbprophet and jupyter installed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:19.10 | |
RUN apt update && apt install -y python3 python3-dev python3-pip vim wget | |
RUN pip3 install numpy plotly pandas | |
RUN pip3 install fbprophet | |
RUN pip3 install jupyter | |
RUN mkdir /fbprophet | |
WORKDIR /fbprophet | |
RUN wget https://raw.githubusercontent.com/facebook/prophet/master/examples/example_wp_log_peyton_manning.csv | |
ENTRYPOINT jupyter notebook --ip=0.0.0.0 --port=8888 --allow-root |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment