guru / Dockerfile
tejadabheja's picture
Update README: add LSH vocabulary filter to architecture
7c67638 verified
raw
history blame contribute delete
218 Bytes
FROM python:3.11-slim
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
ENV PORT=8000
ENV MODEL_NAME=webmind-brain-v1
ENV BRAIN_DB_PATH=/data/brain
EXPOSE 8000
CMD ["python", "serve.py"]