Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
coder-vansh
/
JARVIS
like
37
Running
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
refs/pr/1
JARVIS
/
Dockerfile
coder-vansh
deploy jarvis to huggingface
11eb910
3 months ago
raw
Copy download link
history
blame
Safe
140 Bytes
FROM
python:
3.11
WORKDIR
/app
COPY
requirements.txt .
RUN
pip install -r requirements.txt
COPY
. .
EXPOSE
7860
CMD
[
"python"
,
"run.py"
]