stefanw / bibbot

BibBot is a browser extension that removes the paywall on German online news sites using your library account's access to press databases.
https://stefanw.github.io/bibbot/
GNU General Public License v3.0
499 stars 78 forks source link

add Dockerfile #400

Open Strubbl opened 7 months ago

Strubbl commented 7 months ago

This adds a Dockerfile. I used it to make sure the addon works when using node.js 16. I used it via the commands:

sudo docker build -t $USER_bibbot .
sudo docker run -it --user 1000:1000 -v ./dist:/home/node/dist $USER_bibbot
darkdragon-001 commented 7 months ago

Minor suggestion for the Docker command:

sudo docker build -t $USER_bibbot .
sudo docker run -it --rm --user $(id -u):$(id -g) -v ./dist:/home/node/dist $USER_bibbot