diff --git a/Dockerfile b/Dockerfile index dd21049..0301b56 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,4 +9,4 @@ COPY . . RUN pip3 install -r requirements.txt EXPOSE 5000/udp EXPOSE 5000/tcp -CMD ["gunicorn", "-b", "0.0.0.0:$PORT", "ayct_backend:create_app()", "--timeout", "120"] \ No newline at end of file +CMD gunicorn -b 0.0.0.0:$PORT ayct_backend:create_app() --timeout 120 \ No newline at end of file