From 7a5309fcf7bb1b84c621830b785f924f0c814a9c Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Sun, 10 May 2020 09:00:13 -0400 Subject: [PATCH] - fixed error in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1cdc055..e706048 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,4 +16,4 @@ COPY [ ".", "/dashmachine/" ] ENV PRODUCTION=true EXPOSE 5000 VOLUME /dashmachine/dashmachine/user_data -CMD [ "gunicorn", "--bind", "-t 300", "0.0.0.0:5000", "wsgi:app" ] +CMD [ "gunicorn", "--bind", "0.0.0.0:5000", "wsgi:app" ]