Hugging Face
Models
Datasets
Spaces
Community
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...
0150580
nsfwcheck-api
/
Dockerfile
caliphdev
Update Dockerfile
0150580
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
120 Bytes
FROM
node:latest
WORKDIR
/app
COPY
package.json .
RUN
npm install
COPY
. /app
EXPOSE
7860
CMD
[
"node"
,
"index.js"
]