Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
caliphdev
/
nsfwcheck-api
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
09b0c99
nsfwcheck-api
/
Dockerfile
caliphdev
Update Dockerfile
09b0c99
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
117 Bytes
FROM
node:latest
WORKDIR
/app
COPY
package.json .
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"index.js"
]