Skip to content

Instantly share code, notes, and snippets.

View mchiang0610's full-sized avatar
🤩
Ollama models available on https://ollama.ai/library

Michael mchiang0610

🤩
Ollama models available on https://ollama.ai/library
View GitHub Profile
@Gurpartap
Gurpartap / Dockerfile
Last active August 29, 2015 14:06
Ruby Sinatra docker app for (not just) Kitematic
FROM ubuntu:14.04
RUN apt-get update -qq && \
apt-get install -y make curl -qq && \
apt-get clean && \
curl -sSL "https://github.com/postmodern/ruby-install/archive/master.tar.gz" -o /tmp/ruby-install-master.tar.gz && \
cd /tmp && tar -zxvf ruby-install-master.tar.gz && \
cd /tmp/ruby-install-master && make install && \
apt-get update && \
echo "gem: --no-rdoc --no-ri" >> ~/.gemrc && \