FROM python:3.10 # Install necessary dependencies RUN apt-get update && apt-get install -y \ git \ git-lfs \ ffmpeg \ libsm6 \ libxext6 \ cmake \ rsync \ libgl1-mesa-glx \ && rm -rf /var/lib/apt/lists/* \ && git lfs install # Set up working directory WORKDIR /home/user/app # Copy the application files into the container COPY . /home/user/app # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Download NLTK punkt resource RUN python -m nltk.downloader punkt # Set the environment variable for the Groq API key ENV GROQ_API_KEY="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" # Expose the port for the Streamlit app EXPOSE 8501 # Command to run the app CMD ["streamlit", "run", "app.py"]