Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Pra-tham
/
deepseekmath
like
1
Running
App
Files
Files
Community
6e297d6
deepseekmath
/
Dockerfile
Pra-tham
added some more code
753cb33
2 months ago
raw
Copy download link
history
blame
Safe
143 Bytes
FROM
python:
3.9
-slim
WORKDIR
/app
COPY
. /app
RUN
pip install --no-cache-dir -r requirements.txt
EXPOSE
8080
CMD
[
"python"
,
"app.py"
]