File size: 176 Bytes
23159e6
 
 
 
 
038f221
23159e6
038f221
23159e6
 
1
2
3
4
5
6
7
8
9
10
FROM node:22

WORKDIR /RUN

RUN git clone https://github.com/x-dr/nsfw-api.git && \
    cd nsfw-api && npm install

CMD cd nsfw-api && npm run start && npm run log

EXPOSE 3035