Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
kuefr/test-g
yxmiler
/
test-g
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
test-g
/
Dockerfile
kuefr
Upload 3 files
f0c76ab
verified
about 1 month ago
raw
Copy download link
history
blame
contribute
delete
Safe
143 Bytes
FROM
node:
18
-alpine
WORKDIR
/app
COPY
package*.json ./
RUN
npm install
COPY
. .
ENV
PORT=
7860
EXPOSE
7860
CMD
[
"npm"
,
"start"
]