File size: 188 Bytes
64f3547
 
 
 
 
ce5740b
64f3547
 
 
ce5740b
1
2
3
4
5
6
7
8
9
10
FROM python:3.9

WORKDIR /ml/sentiment_analysis

#ADD LogisticRegr.py .
COPY . /ml/sentiment_analysis

RUN pip install -r requirements.txt

CMD ["python", "/ml/sentiment_analysis/main.py"]