Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Hardware
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
shikharshahi
/
BasicApp
Like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
1b93870
BasicApp
/
Dockerfile
shikharshahi
Update Dockerfile
1b93870
verified
5 months ago
Raw
Download with hf CLI
Copy download link
History
Blame
Safe
206 Bytes
FROM
ollama/ollama
RUN
apt-
get
update && apt-
get
install -y curl
COPY start.sh /start.sh
RUN
chmod +x /start.sh
EXPOSE 11434
ENV
OLLAMA_HOST
=0.0.0.0
# Use sh instead of bash
CMD [
"/bin/sh"
,
"/start.sh"
]