From c2e06ff7a10c30f550e3fcc36ee2a8704068a78c Mon Sep 17 00:00:00 2001 From: Ross Mountjoy Date: Sat, 9 May 2020 12:54:19 -0400 Subject: [PATCH] - fixed error in dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cf67c29..1cdc055 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", "-t 300", "0.0.0.0:5000", "wsgi:app" ]