Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
HFTools
/
inference-api
like
25
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a8fc99a
inference-api
/
Dockerfile
enzostvs
HF Staff
build command
a8fc99a
over 1 year ago
raw
Copy download link
history
blame
Safe
Wrap lines
190 Bytes
FROM
node:
16
-alpine
RUN
npm install -g pnpm
WORKDIR
/app
COPY
package.json pnpm-lock.yaml ./
RUN
pnpm install --frozen-lockfile
COPY
. .
RUN
pnpm build
EXPOSE
3000
CMD
[
"node"
,
"build"
]