LLM_test / Dockerfile
TD-jayadeera's picture
Update Dockerfile
ffcf5fa verified
raw
history blame contribute delete
418 Bytes
FROM python:3.11-slim
WORKDIR /code
RUN apt-get update && apt-get install -y \
git \
build-essential \
python3-dev \
&& rm -rf /var/lib/apt/lists/*
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
# app.py පමණක් copy කරයි
COPY ./app.py /code/app.py
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]