Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
xdragxt
/
jarvis
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
fcf88e7
jarvis
/
Dockerfile
xdragxt
Create Dockerfile
fcf88e7
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
180 Bytes
FROM python:3.12-slim
WORKDIR /
app
COPY
. /
app
RUN
pip install --
no
-cache-
dir
--upgrade pip \
&& pip install --
no
-cache-
dir
-r requirements.txt
CMD [
"python"
,
"jarvis.py"
]