Yvan-W commited on
Commit
23159e6
·
verified ·
1 Parent(s): 8dda3ba

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:22
2
+
3
+ WORKDIR /RUN
4
+
5
+ RUN git clone https://github.com/x-dr/nsfw-api.git && \
6
+ cd nsfw-api && npm install
7
+
8
+ CMD npm run start && npm run log
9
+
10
+ EXPOSE 3035