add booru image search

This commit is contained in:
Owl 2025-01-05 00:00:42 +07:00
parent 2a98b55b8d
commit f8051314cc
17 changed files with 1161 additions and 75 deletions

11
Dockerfile.booru-api Normal file
View file

@ -0,0 +1,11 @@
FROM node:21
COPY booru-api booru-api
WORKDIR /booru-api
RUN npm install
EXPOSE 3456
CMD ["node", "index.js"]