Spaces:
Sleeping
Sleeping
| FROM python:3.12.3 | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY models.py . | |
| COPY app.py . | |
| COPY Best_sentiment_model.keras . | |
| COPY model_emotion_lstm.keras . | |
| COPY . . | |
| CMD ["python", "app.py"] | |