embedchain-fastdash / Dockerfile
Kedar Dabhadkar
Push embedchain-fastdash
6ad7bf1
raw
history blame contribute delete
134 Bytes
FROM python:3.10
ADD . /app
WORKDIR /app
RUN pip3 install -r requirements.txt --no-cache-dir
CMD exec gunicorn app:server --bind :7860