Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
1tbfree
/
CustomBoxServer
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eebb793
CustomBoxServer
/
Dockerfile
1tbfree
Update Dockerfile
eebb793
verified
6 months ago
raw
Copy download link
history
blame
Safe
150 Bytes
FROM
node:
20
WORKDIR
/app
COPY
. .
RUN
npm i express socket.io@2
RUN
chmod
+777 ./
RUN
echo
node index.js > start.sh
RUN
chmod
+777 *
CMD
"./start.sh"