Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Aqso
/
tim
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
tim
/
Dockerfile
Aqso
Update Dockerfile
f17eba4
verified
24 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
186 Bytes
FROM
node:
20
WORKDIR
/app
COPY
package.json package-lock.json* ./
RUN
npm install --production
COPY
. .
ENV
PORT=
7860
ENV
NODE_ENV=production
EXPOSE
7860
CMD
[
"node"
,
"server.js"
]