|
You are here |
johnjr.dev | ||
| | | | |
til.simonwillison.net
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | | | 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
|
|
| | | Learn how to run a Ruby on Rails application inside a Docker container and discover best practices for building Docker images. This tutorial covers... | ||