e9327ec b4bdca9 e9327ec
1
2
3
4
5
6
7
8
FROM python:3.10.8-slim LABEL description="Sentiment classifier of tweets service" WORKDIR /app COPY requirements.txt /app/requirements.txt RUN pip install -r requirements.txt COPY . /app/ EXPOSE 6000 CMD ["python", "app.py"]