Skip to content

Instantly share code, notes, and snippets.

View iampato's full-sized avatar
🖐️
Hey

Patrick waweru iampato

🖐️
Hey
View GitHub Profile
@iampato
iampato / Dockerfile
Created January 31, 2024 18:44 — forked from MillerAdulu/Dockerfile
Minimal Flutter Web Docker Deployment
# Install Operating system and dependencies
FROM ubuntu:22.04 as build-env
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y curl git wget unzip libgconf-2-4 gdb libstdc++6 libglu1-mesa fonts-droid-fallback python3
RUN apt-get clean
ENV DEBIAN_FRONTEND=dialog
@iampato
iampato / rethinkdb_cheat_sheet.MD
Created January 29, 2020 09:35 — forked from bradtraversy/rethinkdb_cheat_sheet.MD
RethinkDB Query Cheat Sheet

RethinkDB Cheat Sheet

Create database

r.dbCreate('mydb')

List databases