Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Anuj-Panthri
/
Node_Chat_Server
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Node_Chat_Server
/
Dockerfile
Anuj-Panthri
basic server
d60b4e5
over 2 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
95 Bytes
FROM
node:
18
-alpine
COPY
. /app
WORKDIR
/app
EXPOSE
8080
RUN
npm install;
CMD
node index.js