SomeNet
/
public repos
/
pub
/
jan
/
aic18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '63-extend-process-model-to-consider-service-failure-for-analysis-servic...
[pub/jan/aic18.git]
/
service-analysis
/
Dockerfile
1
FROM python:3.7-slim
2
LABEL maintainer="Sebastian Steiner"
3
4
WORKDIR /app
5
COPY . /app/
6
7
RUN pip install -r requirements.txt
8
9
RUN python -m textblob.download_corpora
10
11
RUN chmod a+x *.py
12
13
CMD ["python3.7", "./sentiment_analysis.py"]