Trend_Sentry / Dockerfile
ItsProtesilaus's picture
Commit Alpha
b06572a
Raw
History Blame Contribute Delete
245 Bytes
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"]