dialogflowAPI / Dockerfile
OnlyBiggg
Initial commit
e2b74e4
raw
history blame
212 Bytes
FROM python:3.9
ENV API_BASE_URL https://api-dev.futabus.vn
COPY . .
WORKDIR /
RUN pip install --no-cache-dir --upgrade -r /requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]