CoolFace
Apppublic

Dippgray/FDAII

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1# Use a base image with Python2FROM python:3.10-slim3 4# Install required packages5RUN apt-get update && apt-get install -y curl \6    && curl -fsSL https://ollama.com/install.sh | sh7 8# Set the working directory9WORKDIR /app10 11# Copy app files12COPY . .13 14# Install Python dependencies15RUN pip install --no-cache-dir streamlit16 17# Pull the LLaMA 2 model18RUN ollama pull llama219 20# Expose Streamlit port21EXPOSE 850122 23# Run Streamlit app24CMD streamlit run llama_chatbot_with_memory.py --server.port 8501 --server.address 0.0.0.0