File size: 723 Bytes
babeaf6
 
 
 
a3b6d8d
 
babeaf6
 
 
 
625a331
babeaf6
f1f61a4
 
 
 
 
babeaf6
f1f61a4
babeaf6
a3b6d8d
babeaf6
 
 
f1f61a4
babeaf6
 
f1f61a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM python:slim

# Install system-level dependencies
RUN apt-get update && apt-get install -y build-essential portaudio19-dev libffi-dev libssl-dev ffmpeg
RUN useradd -m -u 1000 user
USER user
WORKDIR /realtime_ai_character

# Install Python dependencies
COPY requirements.txt /realtime_ai_character
RUN pip install --no-cache-dir --upgrade -r /realtime_ai_character/requirements.txt

ENV HOME=/home/user \
	PATH=/home/user/.local/bin:$PATH

WORKDIR $HOME/app

# Copy the project files
COPY --chown=user ./ $HOME/app

# Expose 7860. port from the docker image.
EXPOSE 7860

# Make the entrypoint script executable
RUN chmod +x $HOME/app/entrypoint.sh

# Run the application
CMD ["/bin/sh", "/home/user/app/entrypoint.sh"]