customer-support-api / Dockerfile
3v324v23's picture
FastAPI OpenEnv server
a77725d
Raw
History Blame Contribute Delete
197 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]