Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hackergeek98
/
R1
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
c077338
R1
/
Dockerfile
hackergeek98
Update Dockerfile
221c9ad
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
192 Bytes
FROM
python:3.10-slim
RUN
apt-
get
update && apt-
get
install -y git curl cmake build-essential
WORKDIR /app
COPY . .
RUN
pip install --no-cache-dir -r requirements.txt
CMD [
"python3"
,
"app.py"
]