소스 검색

web: fix default CMD in Dockerfile

Shiv Tyagi 10 달 전
부모
커밋
8fe8ceee42
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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"]