Browse Source

web: fix default CMD in Dockerfile

Shiv Tyagi 10 months ago
parent
commit
8fe8ceee42
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/Dockerfile

+ 1 - 1
web/Dockerfile

@@ -13,4 +13,4 @@ WORKDIR /app/web
 RUN pip install --no-cache-dir -r requirements.txt
 
 ENTRYPOINT ["./docker-entrypoint.sh"]
-CMD ["/bin/sh", "./start.sh"]
+CMD ["gunicorn", "wsgi:application"]