Spaces:
Sleeping
Sleeping
| FROM python:3.9-slim # Koristi "slim" verziju za manju veličinu | |
| WORKDIR /app | |
| # Instaliraj system dependencies za Google Cloud | |
| RUN apt-get update && apt-get install -y \ | |
| libffi-dev \ | |
| libssl-dev \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY . . | |
| CMD ["python", "app.py"] |