Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
openapi
like
10
Running
on
CPU Upgrade
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
openapi
/
Dockerfile
julien-c
HF Staff
Dockerfile
a99cb19
verified
2 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
159 Bytes
FROM
node:latest
WORKDIR
/app
COPY
. .
RUN
npm install -g pnpm && pnpm install
EXPOSE
7860
CMD
[
"node"
,
"--disable-warning=ExperimentalWarning"
,
"app.ts"
]