Update Dockerfile

This commit is contained in:
Kevin Chung
2015-10-20 15:35:51 -04:00
parent 1d8748d5c4
commit 11b9039fa1

View File

@@ -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