Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
deeme
/
cs
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
cs
/
Dockerfile
deeme
Upload Dockerfile
1c2e292
verified
about 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
200 Bytes
FROM
python:
3.11
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
5100
RUN
mkdir
/app/data
RUN
chmod
-R 777 /app/data
CMD
[
"python"
,
"app.py"
]