Skip to content

Commit

Permalink
add deps for cairo library
Browse files Browse the repository at this point in the history
  • Loading branch information
nwaughachukwuma committed Nov 1, 2024
1 parent bf69acf commit e44aef6
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ ENV PYTHONDONTWRITEBYTECODE 1

WORKDIR /app

# Install FFmpeg and any other required dependencies
RUN apt-get -yqq update && apt-get -yqq install build-essential ffmpeg && \
rm -rf /var/lib/apt/lists/*
# Install FFmpeg, Cairo, and any other required dependencies
RUN apt-get -yqq update && apt-get -yqq install \
build-essential \
ffmpeg \
libcairo2-dev \
pkg-config \
python3-dev \
&& rm -rf /var/lib/apt/lists/*

COPY . ./

Expand Down

0 comments on commit e44aef6

Please sign in to comment.