File size: 245 Bytes
b06572a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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"]