chunker / Dockerfile
prashantmatlani's picture
phase0102 to chunker_2; files removed
b939e90
raw
history blame contribute delete
405 Bytes
FROM python:3.11
WORKDIR /code
# Install system dependencies
RUN apt-get update && apt-get install -y \
build-essential \
libgl1 \
libglib2.0-0 \
&& rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]