Last active
December 30, 2021 14:25
-
-
Save stefanproell/89a00f3a2c18a7e9549a1de6f82cf0f8 to your computer and use it in GitHub Desktop.
Run a Facebook Prophet Forecast in a Docker Container
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
# Run a python script using FB Prophet in a Docker container | |
# Build image: docker build -f Dockerfile-Debian -t forecast:R1 . | |
FROM python:3.4.6-wheezy | |
MAINTAINER Stefan Proell <[email protected]> | |
RUN apt-get -y update && apt-get install -y \ | |
python3-dev \ | |
libpng-dev \ | |
apt-utils \ | |
python-psycopg2 \ | |
python-dev \ | |
postgresql-client \ | |
&& rm -rf /var/lib/apt/lists/* | |
RUN pip install --upgrade setuptools | |
RUN pip install cython | |
RUN pip install numpy | |
RUN pip install matplotlib | |
RUN pip install pystan | |
RUN pip install fbprophet | |
RUN pip install psycopg2 | |
RUN pip install sqlalchemy | |
WORKDIR /forecast | |
COPY . /forecast/ | |
CMD [ "python", "./run_forecast.py" ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello i get this error when running this Dockerfile do you have any idea on how to fix it please
`
W: Failed to fetch http://deb.debian.org/debian/dists/wheezy/main/binary-amd64/Packages 404 Not Found
W: Failed to fetch http://archive.debian.org/debian/dists/wheezy/updates/main/binary-amd64/Packages 404 Not Found [IP: 130.89.148.13 80]
W: Failed to fetch http://security.debian.org/dists/wheezy/updates/main/binary-amd64/Packages 404 Not Found [IP: 151.101.0.204 80]
E: Some index files failed to download. They have been ignored, or old ones used instead.
`