Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
hhoiw/playga
dakcl
/
playga
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
playga
/
Dockerfile
hhoiw
Update Dockerfile
3886830
verified
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
171 Bytes
FROM
node:
20.10
#FROM node:latest
WORKDIR
/app
COPY
. .
EXPOSE
7860
#RUN apt update -y &&\
RUN
chmod
+x /app/index.js &&\
npm install
CMD
[
"node"
,
"index.js"
]