You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM openwhisk/python3action
|
|
|
|
RUN apk --update add --no-cache g++ lapack-dev gfortran openssl ca-certificates py-openssl jpeg-dev zlib-dev libjpeg
|
|
|
|
RUN pip install textblob nltk newspaper3k
|
|
|
|
RUN pip install pandas
|
|
|
|
RUN python -m textblob.download_corpora
|
|
|
|
|