Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HFTools
/
inference-api
like
27
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
8a0c38c
inference-api
/
Dockerfile
enzostvs
HF Staff
build command
8a0c38c
almost 2 years ago
raw
Copy download link
history
blame
Safe
156 Bytes
FROM
node:
16
-alpine
RUN
npm install -g pnpm
WORKDIR
/app
RUN
npm install --frozen-lockfile
COPY
. .
RUN
npm run build
EXPOSE
3000
CMD
[
"node"
,
"build"
]