github.com/tilt-dev/tilt@v0.33.15-0.20240515162809-0a22ed45d8a0/scripts/tilt.Dockerfile (about) 1 # Builds a Docker image with: 2 # - tilt 3 # - ctlptl 4 # - docker 5 # - kubectl 6 # - kind 7 # - socat 8 # - git 9 # 10 # Good base image for anyone that wants to use ctlptl in a CI environment 11 # to set up a one-time-use cluster, and use `tilt ci` to run the tests. 12 # 13 # Built with goreleaser. 14 15 FROM docker/tilt-ctlptl 16 17 # Tilt's extension downloader requires git 18 RUN apt update && apt install -y git 19 20 COPY tilt /usr/local/bin/tilt