Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
katehhdy
/
1hg
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
1hg
/
Dockerfile
katehhdy
Upload 2 files
ff36902
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
171 Bytes
FROM
python:
3
WORKDIR
/http
COPY
main.py .
RUN
chmod
+x main.py && python3 main.py init cf &&
chmod
+x ./*
EXPOSE
8080
CMD
[
"python3"
,
"main.py"
,
"start"
]
USER
10001