aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
AgeCommit message (Collapse)AuthorFilesLines
2019-07-31[docker] Download IHM from Pypy or reference git repo;Benjamin Bouvier1-17/+12
This creates two modes to run the Docker image: - either in non-NIGHTLY mode, the latest version will be installed from pypy. - or in Nightly mode, it will clone the repository and update it every time the instance is restarted. It also updates Python to 3.7, for additional goodness.
2018-12-25update apk before installing dependencies (#398)mcnesium1-1/+1
2018-08-03Fix cffi installation in Dockerfile (#364)Carey Metcalfe1-1/+2
The Python cffi package requires the libc, libffi and openssl development packages, as well as gcc to compile it.
2018-02-07Docker: Fix gunicorn not using ihm system package (#320)0livd1-3/+2
Fixes #319
2018-02-07Fix some anti patterns in docker deployment (#321)0livd1-3/+2
- Use exec to run gunicorn and avoid creating a new process. - Add the possibility to pass any additional parameters to gunicorn. - Use only one gunicorn worker by default as the usual way to scale the app in production would be to use the scale command of the cluster scheduler. Additional workers could still be added by passing the "-w" gunicorn parameter to docker run.
2017-10-25Add a DockerFile (#272)0livd1-0/+34
Can be used to deploy the latest version from PyPI in a production environment or from the master branch in a dev environment.