dkedar7/embedchain-fastdash
0
1FROM python:3.102ADD . /app3WORKDIR /app4RUN pip3 install -r requirements.txt --no-cache-dir5CMD exec gunicorn app:server --bind :78601FROM python:3.102ADD . /app3WORKDIR /app4RUN pip3 install -r requirements.txt --no-cache-dir5CMD exec gunicorn app:server --bind :7860