Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
mike23415
/
ORC
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
ORC
/
Dockerfile
mike23415
Update Dockerfile
8d9b5ef
verified
4 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
149 Bytes
FROM
python:
3.10
-slim
WORKDIR
/app
COPY
requirements.txt ./
RUN
pip install --no-cache-dir -r requirements.txt
COPY
. .
CMD
[
"python"
,
"app.py"
]