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...
de2e0fe
trsstapi
/
Dockerfile
Twan07
Update Dockerfile
de2e0fe
verified
2 months ago
raw
Copy download link
history
blame
154 Bytes
FROM
node:
20
-alpine
WORKDIR
/app
RUN
addgroup -S app && adduser -S app -G app
COPY
. .
RUN
npm install
USER
app
EXPOSE
3000
CMD
[
"node"
,
"src/server.js"
]