Skip to content

Commit

Permalink
Optimize docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
pycui committed Jul 18, 2023
1 parent 9c8b484 commit a375a83
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ RUN apt-get update && apt-get install -y portaudio19-dev libffi-dev libssl-dev f

WORKDIR /realtime_ai_character

# Install Python dependencies
COPY requirements.txt /realtime_ai_character
RUN pip install -r /realtime_ai_character/requirements.txt

# Copy the project files
COPY ./ /realtime_ai_character

# Install Python dependencies
RUN pip install -r requirements.txt

# Expose 8000 port from the docker image.
EXPOSE 8000

Expand Down

0 comments on commit a375a83

Please sign in to comment.