Spaces:
Paused
Paused
| FROM openjdk:21-slim | |
| WORKDIR /app | |
| RUN apt-get update && apt-get install -y \ | |
| python3 python3-pip curl wget unzip \ | |
| && rm -rf /var/lib/apt/lists/* | |
| COPY requirements.txt . | |
| RUN pip3 install --break-system-packages -r requirements.txt | |
| COPY . . | |
| EXPOSE 7860 | |
| CMD ["python3", "app.py"] |