Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
AIMaster7
/
AAZ
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
0ead3fa
AAZ
/
Dockerfile
AIMaster7
Create Dockerfile
0ca7981
verified
about 1 month ago
raw
Copy download link
history
blame
Safe
116 Bytes
FROM
node:
18
-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
EXPOSE
3000
CMD
[
"npm"
,
"start"
]