dialogflowAPI / Dockerfile
OnlyBiggg
second commit
0fa3b38
raw
history blame contribute delete
213 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", "main:app", "--host", "0.0.0.0", "--port", "7860"]