/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

johnjr.dev
| | til.simonwillison.net
2.5 parsecs away

Travel
| | I have a Django application which uses PostgreSQL. I build the Django application into its own Docker container, push that built container to the GitHub package registery and then deploy that container to production.
| | www.perrotta.dev
3.7 parsecs away

Travel
| | To build a docker image completely from scratch, without reusing cache layers on your system: docker build --no-cache -f Dockerfile . -t {image name}:{image tag} --platform linux/amd64
| | blog.fredrb.com
4.2 parsecs away

Travel
| | Tiny Python Docker Images I was looking for a way to create a very small docker image for a Python project. The python project I created is a Telegram bot quizzes me in German. The python-telegram-bot pip package requires gcc to fully build- so using alpine image did not do the trick for me. I searched online, found a few example bot none that would actually do what I needed with a reasonable image size.
| | earthly.dev
13.8 parsecs away

Travel
| Learn how to run a Ruby on Rails application inside a Docker container and discover best practices for building Docker images. This tutorial covers...