BasicApp / Dockerfile
shikharshahi's picture
Update Dockerfile
1b93870 verified
Raw
History Blame Contribute Delete
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"]