Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
smgc
/
vertex2api
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
f656f01
vertex2api
/
Dockerfile
smgc
Create Dockerfile
f656f01
verified
7 months ago
raw
Copy download link
history
blame
Safe
118 Bytes
FROM
node:
14
WORKDIR
/app
COPY
package.json .
COPY
app.js .
RUN
npm install
EXPOSE
8080
CMD
[
"node"
,
"app.js"
]