Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Shipmaster1
/
PythonicRAGReact
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
310b4ae
PythonicRAGReact
/
frontend
/
Dockerfile
T-K-O-H
Initial commit without node_modules
d184dfc
11 months ago
raw
Copy download link
history
blame
Safe
185 Bytes
FROM
node:
18
-alpine
WORKDIR
/app
# Install dependencies
COPY
package*.json ./
RUN
npm install
# Copy source
COPY
. .
# Expose port
EXPOSE
3000
# Start the app
CMD
[
"npm"
,
"start"
]