Skip to content

Instantly share code, notes, and snippets.

@vittorio-nardone
Created November 18, 2020 09:55
Show Gist options
  • Save vittorio-nardone/07c2332363e4fdb8e3d069d1372bd408 to your computer and use it in GitHub Desktop.
Save vittorio-nardone/07c2332363e4fdb8e3d069d1372bd408 to your computer and use it in GitHub Desktop.
Simple Prophet dockerfile
FROM python:3.6.10-slim
RUN apt-get -y update && apt-get install -y \
python3-dev \
apt-utils \
python-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*
RUN pip install --upgrade setuptools
RUN pip install cython
RUN pip install numpy
RUN pip install pandas
RUN pip install requests
RUN pip install --upgrade plotly
RUN pip install matplotlib
RUN pip install pystan
RUN pip install fbprophet
RUN pip install metaflow
ENV USERNAME=prophet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment