Abandon Hope All Ye Who Enter Here

This commit is contained in:
alyx
2022-09-14 08:59:00 -05:00
commit c9501d9829
3 changed files with 167 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
from node:18-bullseye
WORKDIR /app
RUN apt-get update && apt-get install -y zip firefox-esr && git clone git://git.sv.gnu.org/librejs.git .
RUN npm install acorn-loose jssha browserify selenium-webdriver geckodriver
RUN npm install -g geckodriver
RUN export PATH=$PATH:./node_modules/.bin
RUN ./build.sh
ENTRYPOINT ["node", "./utilities/compliance.js"]