Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
abhicodes
/
file-storage-system
like
2
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b242d03
file-storage-system
/
Dockerfile
abhicodes
Upload 6 files
2ace788
verified
9 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
FROM
python:
3.11
WORKDIR
/code
COPY
./requirements.txt /code/requirements.txt
RUN
pip install --upgrade -r requirements.txt
COPY
. /code
CMD
[
"gunicorn"
,
"app:app"
,
"-b"
,
"0.0.0.0:7860"
]