Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
axebps
/
singlefile
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
6940ab2
singlefile
/
Dockerfile
axebps
Create Dockerfile
6940ab2
verified
11 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
FROM
capsulecode/singlefile
USER
root
WORKDIR
/app
COPY
. /app
RUN
apk add --no-cache py3-pip && pip install flask --break-system-packages
EXPOSE
7860
ENTRYPOINT
[
"python3"
,
"/app/app.py"
]