Florin commited on
Commit
ce5740b
1 Parent(s): acbf623

New commit

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -3,8 +3,8 @@ FROM python:3.9
3
  WORKDIR /ml/sentiment_analysis
4
 
5
  #ADD LogisticRegr.py .
6
- COPY . /ml/sentiment_analysis/
7
 
8
  RUN pip install -r requirements.txt
9
 
10
- CMD ["python", "./ml/sentiment_analysis/main.py"]
 
3
  WORKDIR /ml/sentiment_analysis
4
 
5
  #ADD LogisticRegr.py .
6
+ COPY . /ml/sentiment_analysis
7
 
8
  RUN pip install -r requirements.txt
9
 
10
+ CMD ["python", "/ml/sentiment_analysis/main.py"]