Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
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
3 months ago
raw
Copy download link
history
blame
contribute
delete
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"
]