File size: 389 Bytes
a9681c3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM huggingface/gradio-gpu:4.23.0

# Install system dependencies
RUN apt-get update && \
    apt-get install -y fluidsynth

# Copy the FluidR3_GM.sf2 file
RUN cp /usr/share/sounds/sf2/FluidR3_GM.sf2 ./font.sf2

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

# Copy the app files
COPY . .

# Run the app
CMD ["python", "app.py"]