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 '29-consistent-readme-naming' into 'master'
[pub/jan/aic18.git]
/
service-analysis
/
Dockerfile
1
FROM python:3
2
LABEL maintainer="Sebastian Steiner"
3
4
RUN pip install flask
5
RUN pip install flask_restful
6
RUN pip install indicoio
7
8
WORKDIR /app
9
COPY . /app/
10
11
RUN chmod a+x *.py
12
13
CMD ["python3", "./sentiment_analysis.py"]