Skip to content

Instantly share code, notes, and snippets.

@BenoitDoyon
Last active August 12, 2019 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BenoitDoyon/ed9f4496a493605aa81c27580778c7f5 to your computer and use it in GitHub Desktop.
Save BenoitDoyon/ed9f4496a493605aa81c27580778c7f5 to your computer and use it in GitHub Desktop.
FROM mcr.microsoft.com/azure-functions/python:2.0
ENV AzureWebJobsScriptRoot=/home/site/wwwroot \
AzureFunctionsJobHost__Logging__Console__IsEnabled=true
RUN apt-get -y update && apt-get install -y \
build-essential \
apt-utils
RUN pip install --upgrade setuptools
RUN pip install 'pystan>=2.19.0, <3.0.0'
RUN pip install 'fbprophet<0.6'
COPY . /home/site/wwwroot
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment