From 11b9039fa1b33da67ff25ecbe0ebf269f80a3f86 Mon Sep 17 00:00:00 2001 From: Kevin Chung Date: Tue, 20 Oct 2015 15:35:51 -0400 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dae08c52..0e91d205 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ RUN apt-get install git gunicorn -y RUN git clone https://github.com/isislab/CTFd.git /opt/CTFd && cd /opt/CTFd && ./prepare.sh WORKDIR /opt/CTFd -CMD ["gunicorn", "--bind", "0.0.0.0:8000", "-w", "4", "CTFd:create_app()"] +CMD ["gunicorn", "--bind", "0.0.0.0:8000", "-w", "1", "CTFd:create_app()"] EXPOSE 8000