QueryYourDocs / Dockerfile
LVKinyanjui's picture
Reconfigured port numbers to have app work on hf spaces and locally with compose
5326ac9
raw
history blame
No virus
428 Bytes
ARG PYTHON_VERSION=3.10.12
FROM python:${PYTHON_VERSION}-slim as base
WORKDIR /app
COPY requirements.txt .
RUN python -m pip install --no-cache-dir -r requirements.txt
# # Install ollama
# RUN curl -fsSL https://ollama.com/install.sh | sh
# Copy the source code into the container.
COPY . .
# Expose the port that the application listens on.
EXPOSE 8000
# Run the application.
CMD streamlit run app.py --server.port 7860