Zasha1 commited on
Commit
68b39c8
·
verified ·
1 Parent(s): 1ebe974

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,13 +1,15 @@
1
  # Use the Hugging Face Spaces base image
2
  FROM huggingface/platform:latest
3
 
4
- # Install system dependencies for PyAudio and other build tools
5
  RUN apt-get update && apt-get install -y \
6
  portaudio19-dev \
7
  libasound-dev \
8
  libportaudio2 \
9
  libportaudiocpp0 \
10
  gcc \
 
 
11
  && apt-get clean
12
 
13
  # Set the working directory inside the container
 
1
  # Use the Hugging Face Spaces base image
2
  FROM huggingface/platform:latest
3
 
4
+ # Install system dependencies for PyAudio and other required libraries
5
  RUN apt-get update && apt-get install -y \
6
  portaudio19-dev \
7
  libasound-dev \
8
  libportaudio2 \
9
  libportaudiocpp0 \
10
  gcc \
11
+ g++ \
12
+ python3-dev \
13
  && apt-get clean
14
 
15
  # Set the working directory inside the container