Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
opex792
/
stihirus-reader
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
47330c2
stihirus-reader
/
Dockerfile
opex792
Update Dockerfile
9724482
verified
12 months ago
raw
Copy download link
history
blame
165 Bytes
FROM
node:
18
-slim
WORKDIR
/code
COPY
package.json package-lock.json* ./
RUN
npm install
COPY
. .
EXPOSE
7860
ENV
NODE_ENV=production
CMD
[
"node"
,
"server.js"
]