Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
inusoft
/
ui
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b650529
ui
/
Dockerfile
purrbits
Update Dockerfile
b650529
verified
3 months ago
raw
Copy download link
history
blame
Safe
170 Bytes
FROM
node:
20
WORKDIR
/app
RUN
apt-get update && apt-get install -y git &&
rm
-rf /var/lib/apt/lists/*
COPY
start.sh .
RUN
chmod
+x start.sh
EXPOSE
7860
CMD
[
"./start.sh"
]