Created
October 14, 2021 16:18
-
-
Save ivansabik/a28bdf85cb63f7c509b5f3f1b3f8b834 to your computer and use it in GitHub Desktop.
Install fb prophet in docker python:3.7-stretch
This file contains 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
# 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