File size: 399 Bytes
de21d8d
2fe9a91
de21d8d
2fe9a91
de21d8d
 
 
 
2fe9a91
 
de21d8d
 
2fe9a91
de21d8d
 
2fe9a91
 
de21d8d
ef0420c
de21d8d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM node:20-bullseye-slim

# Install Java, wget, unzip, Bubblewrap deps
RUN apt-get update && apt-get install -y \
    openjdk-17-jdk \
    wget unzip git \
    libpulse-dev libgl1-mesa-dev \
    && npm install -g bubblewrap \
    && rm -rf /var/lib/apt/lists/*

# Install Python + Gradio
RUN pip install gradio

# Copy source files
COPY . /app
WORKDIR /app

EXPOSE 7860

CMD ["python3", "app.py"]