Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
TwanAPI
/
trsstapi
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a169e77
trsstapi
/
Dockerfile
Twan07
Create Dockerfile
a169e77
verified
3 months ago
raw
Copy download link
history
blame
167 Bytes
FROM
node:
20
-alpine
WORKDIR
/app
RUN
addgroup -S app && adduser -S app -G app
COPY
. .
RUN
npm install --production
USER
app
EXPOSE
3000
CMD
[
"node"
,
"src/server.js"
]