Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
fiewolf1000
/
Astock
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b9bee03
Astock
/
Dockerfile
fiewolf1000
Create Dockerfile
735ab26
verified
15 days ago
raw
Copy download link
history
blame
Safe
118 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
. .
RUN
pip install --no-cache-dir -r requirements.txt
CMD
[
"python"
,
"app.py"
]