Changeset - 65033b0937e0
[Not reviewed]
0 1 0
Sachi King - 7 years ago 2017-06-24 04:09:33
nakato@nakato.io
Use uWSGI as the backing runner
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
docker/Dockerfile
Show inline comments
...
 
@@ -20,10 +20,11 @@ RUN set -ex \
 
    && apt-get install -y $buildDeps --no-install-recommends \
 
    && rm -rf /var/lib/apt/lists/* \
 
    && pip install --no-cache-dir -r /reqs/requirements.txt -c /reqs/constraints.txt \
 
    && pip install uwsgi \
 
    && apt-get purge -y --auto-remove $buildDeps \
 
    && rm -rf /usr/src/python ~/.cache
 

	
 
COPY . /app/symposion_app
 

	
 
WORKDIR /app/symposion_app
 
CMD ["/app/symposion_app/docker/deploy_with_sqlite.sh"]
 
CMD ["/usr/local/bin/uwsgi", "--http-socket", "0.0.0.0:8080", "--wsgi-file", "pinaxcon/wsgi.py"]
0 comments (0 inline, 0 general)