Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
inderjeet
/
Student
like
1
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Student
/
Dockerfile
3v324v23
Deploy to HF (Final)
6bc61ad
5 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
194 Bytes
FROM
node:
18
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
# Initialize Database
RUN
node setup_db.js
# Hugging Face Spaces serve on 7860
EXPOSE
7860
CMD
[
"node"
,
"app.js"
]