Skip to content

Instantly share code, notes, and snippets.

@ivansabik
Created October 14, 2021 16:18
Show Gist options
  • Save ivansabik/a28bdf85cb63f7c509b5f3f1b3f8b834 to your computer and use it in GitHub Desktop.
Save ivansabik/a28bdf85cb63f7c509b5f3f1b3f8b834 to your computer and use it in GitHub Desktop.
Install fb prophet in docker python:3.7-stretch
# Install prophet
FROM python:3.7-stretch
RUN apt-get -y install git libc-dev
RUN pip install pip==19.1.1
WORKDIR /opt
RUN git clone https://github.com/facebook/prophet.git
WORKDIR /opt/prophet
# You can use specific tags
# RUN git fetch origin && git checkout tags/v1.0
WORKDIR /opt/prophet/python
RUN pip install -r requirements.txt
RUN python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment