Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ZeeAI1
/
ZeeABC
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
91a1198
ZeeABC
/
dockerfile
ZeeAI1
Create dockerfile
91a1198
verified
3 months ago
raw
Copy download link
history
blame
Safe
182 Bytes
FROM
python:
3.10
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install --no-cache-dir -r requirements.txt
RUN
python -m spacy download en_core_web_sm
COPY
. .
CMD
[
"python"
,
"app.py"
]