Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
connorlixyz
/
autokeepgormtest2mins
like
0
Paused
App
Files
Files
Community
main
autokeepgormtest2mins
/
Dockerfile
connorlixyz
Update Dockerfile
31429ba
verified
10 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
116 Bytes
FROM
node:slim
WORKDIR
/app
COPY
. .
EXPOSE
7860
RUN
apt update -y &&\
npm install
CMD
[
"node"
,
"index.js"
]