rag-full / api /Dockerfile
Junranl's picture
Upload folder using huggingface_hub
6e1a53e verified
raw
history blame contribute delete
158 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install -r requirements.txt
COPY . /app
EXPOSE 8000
CMD ["python", "-m", "main"]