Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Biomimicry-AI
/
Nexus
like
0
Build error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a76b26f
Nexus
/
Dockerfile
Severian
Update Dockerfile
a76b26f
over 1 year ago
raw
Copy download link
history
blame
Safe
215 Bytes
FROM
node:18-alpine AS base
FROM
base AS deps
# Build the application
RUN
npm
run
build
# Expose port 3000 for the application
EXPOSE 3000
# Define the command to run the application
CMD [
"npm"
,
"run"
,
"start"
]