Duplicate / Dockerfile
Theflame47's picture
Update Dockerfile
8fe22e0 verified
Raw
History Blame Contribute Delete
407 Bytes
FROM python:3.12-slim
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
pkg-config \
libicu-dev \
build-essential \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r /app/requirements.txt
COPY . /app
ENV PORT=7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]