Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Rould-Bot
/
xmg
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
xmg
/
Dockerfile
Rould-Bot
Create Dockerfile
877025a
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
131 Bytes
FROM
node:
20
-alpine
WORKDIR
/app
COPY
package.json .
RUN
npm install
COPY
. .
ENV
PORT=
7860
EXPOSE
7860
CMD
[
"npm"
,
"start"
]