ibrahimlasfar commited on
Commit
a53cb38
·
1 Parent(s): cc86586

Add gcc and libc-dev to Dockerfile for webrtcvad build

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -2
Dockerfile CHANGED
@@ -3,8 +3,13 @@ FROM python:3.10-slim
3
  # Set working directory
4
  WORKDIR /app
5
 
6
- # Install chromium-driver and dependencies
7
- RUN apt-get update && apt-get install -y chromium-driver git && apt-get clean
 
 
 
 
 
8
 
9
  # Update pip
10
  RUN pip install --upgrade pip
 
3
  # Set working directory
4
  WORKDIR /app
5
 
6
+ # Install chromium-driver and build dependencies
7
+ RUN apt-get update && apt-get install -y \
8
+ chromium-driver \
9
+ git \
10
+ gcc \
11
+ libc-dev \
12
+ && apt-get clean && rm -rf /var/lib/apt/lists/*
13
 
14
  # Update pip
15
  RUN pip install --upgrade pip