Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
Nexchan/gptdemo
Closure-RI
/
gptdemo
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
297f180
gptdemo
/
Dockerfile
Nexchan
Update Dockerfile
e44fad8
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
203 Bytes
FROM
node:latest
RUN
apt-get update && \
apt-get install -y curl && \
rm
-rf /var/lib/apt/lists/*
WORKDIR
/app
COPY
package.json .
RUN
npm install
COPY
. .
EXPOSE
7860
CMD
[
"npm"
,
"start"
]