File size: 408 Bytes
6f1f375
1309ae7
 
6f1f375
 
 
 
 
 
 
 
 
 
 
 
1309ae7
6f1f375
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM python:3.11-slim

WORKDIR /app

RUN apt-get update && apt-get install -y \
    build-essential \
    git \
    && rm -rf /var/lib/apt/lists/*

COPY requirements_simple.txt requirements.txt

RUN pip install --no-cache-dir -r requirements.txt

COPY app_simple.py app.py

EXPOSE 7860

# Set model (change this to use different Gemma 4 variant)
ENV MODEL_NAME=google/gemma-4-E4B-it

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