Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Khrisna/api-sadteam
NekonekoID
/
api-sadteam
like
1
Running
App
Files
Files
Community
2
Fetching metadata from the HF Docker repository...
3e20395
api-sadteam
/
Dockerfile
akkun3704
Create Dockerfile
3e20395
over 1 year ago
raw
Copy download link
history
blame
Safe
190 Bytes
FROM
node:latest
RUN
apt-get update && apt-get install -y &&
rm
-rf /var/lib/apt/lists/*
WORKDIR
/app
COPY
package.json .
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"node"
,
"index.js"
]