Skip to content

Instantly share code, notes, and snippets.

@srkiNZ84
Created March 3, 2020 10:01
Show Gist options
  • Save srkiNZ84/f6921872a4c001cf6c5cf1410e529270 to your computer and use it in GitHub Desktop.
Save srkiNZ84/f6921872a4c001cf6c5cf1410e529270 to your computer and use it in GitHub Desktop.
Dockerfile to generate docker image with fbprophet and jupyter installed
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