Skip to content

amaccis/docker-node-libstemmer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

amaccis/node-libstemmer

The purpouse of this image is to provide an Alpine Linux 3.15 environment with Node.js 17 onboard, node-gyp globally installed and the libstemmer compiled as a shared library.

Snowball and libstemmer

Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. Libstemmer instead, contains a complete set of Snowball stemming algorithms that you can include into a C project of your own. With libstemmer you don't need to use the Snowball compiler.

How to use this image

Using docker

$ docker run --name node-libstemmer -v $PWD/:/home/node/app -d amaccis/node-libstemmer

Using docker-compose

version: '3.8'

services:
  node:
    image: amaccis/node-libstemmer
    working_dir: /home/node/app
    volumes:
      - ./:/home/node/app

About

Docker Alpine Linux environment with Node.js onboard, node-gyp globally installed and the libstemmer compiled as a shared library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published