coala / docker-coala-base

coala base docker image
21 stars 28 forks source link

Make cache NLTK data one command #34

Closed jayvdb closed 7 years ago

jayvdb commented 7 years ago

The NLTK data should be cached in the Docker.

See https://github.com/coala/coala/pull/3082 for roughly what is needed.

Mixih commented 7 years ago

May or may not be present. Need more testing to verify...

Mixih commented 7 years ago

Might as well add it anyways as it can't hurt?

jayvdb commented 7 years ago

Correct

jayvdb commented 7 years ago

Ah, already done

# Nltk data
RUN python3 -m nltk.downloader punkt
RUN python3 -m nltk.downloader maxent_treebank_pos_tagger
RUN python3 -m nltk.downloader averaged_perceptron_tagger

Could speed that up by invoking as one command.