system-prompts-and-models-o.../revolutionary_voice_agent_Dockerfile
Sahiix@1 30e89fc1cb
Build project (#2)
* Checkpoint before follow-up message

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Add system prompts for various AI tools and assistants

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Add N8N workflow documentation API with database and import tools

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Checkpoint before follow-up message

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Create Revolutionary AI Agent with voice and video capabilities

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Create advanced voice processor with character-based voice synthesis

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Create Revolutionary AI Agent System with voice and video capabilities

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Checkpoint before follow-up message

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

* Add full-stack, ML, and blockchain capabilities to Ultimate AI Agent

Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>

---------

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: escapethematrixmate01 <escapethematrixmate01@gmail.com>
2025-08-06 05:32:03 +00:00

77 lines
1.9 KiB
Plaintext

FROM python:3.11-slim
# Set environment variables
ENV PYTHONUNBUFFERED=1
ENV PYTHONDONTWRITEBYTECODE=1
ENV DEBIAN_FRONTEND=noninteractive
# Install system dependencies
RUN apt-get update && apt-get install -y \
gcc \
g++ \
git \
curl \
wget \
ffmpeg \
libsm6 \
libxext6 \
libxrender-dev \
libglib2.0-0 \
libgl1-mesa-glx \
libgomp1 \
libgthread-2.0-0 \
libgtk-3-0 \
libavcodec-dev \
libavformat-dev \
libswscale-dev \
libv4l-dev \
libxvidcore-dev \
libx264-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libatlas-base-dev \
gfortran \
portaudio19-dev \
python3-pyaudio \
espeak \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
# Copy requirements and install Python dependencies
COPY revolutionary_voice_agent_requirements.txt .
RUN pip install --no-cache-dir -r revolutionary_voice_agent_requirements.txt
# Copy application code
COPY revolutionary_voice_agent.py .
COPY static/ ./static/
COPY templates/ ./templates/
# Create necessary directories
RUN mkdir -p static/workflows templates logs data audio_cache video_cache
# Copy AI agent frameworks and tools
COPY "Cursor Prompts/" ./Cursor\ Prompts/ 2>/dev/null || true
COPY "Manus Agent Tools & Prompt/" ./Manus\ Agent\ Tools\ \&\ Prompt/ 2>/dev/null || true
COPY "Devin AI/" ./Devin\ AI/ 2>/dev/null || true
COPY "AI_Agent_Builder_Framework/" ./AI_Agent_Builder_Framework/ 2>/dev/null || true
# Copy workflow files if they exist
COPY n8n-workflows/ ./n8n-workflows/ 2>/dev/null || true
# Create non-root user
RUN useradd --create-home --shell /bin/bash agent && \
chown -R agent:agent /app
USER agent
# Expose port
EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
CMD curl -f http://localhost:8000/api/health || exit 1
# Run the application
CMD ["python", "revolutionary_voice_agent.py"]