hashan-7's picture
Create Dockerfile
b70182f verified
Raw
History Blame Contribute Delete
249 Bytes
FROM python:3.11-slim
WORKDIR /code
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app ./app
CMD uvicorn app.main:app --host 0.0.0.0 --port 7860