From 43052fe52227a59ada36395ec8753e1dce2516d5 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 21 May 2023 09:32:36 +0200 Subject: [PATCH] Fix links --- .../index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/posts/lighten-your-python-image-docker-multi-stage-builds/index.md b/content/posts/lighten-your-python-image-docker-multi-stage-builds/index.md index 5bfb35a..65a3682 100644 --- a/content/posts/lighten-your-python-image-docker-multi-stage-builds/index.md +++ b/content/posts/lighten-your-python-image-docker-multi-stage-builds/index.md @@ -6,8 +6,8 @@ aliases: ["/lighten-your-python-image-docker-multi-stage-builds"] --- In previous posts we talked about [poetry][poetry] and [Docker images layers][docker-cache] and I promised I would write about Docker multi-stage builds, so here we go! -[poetry]: /poetry-python-dependencies-management/ -[docker-cache]: /docker-images-layers-and-cache/ +[poetry]: {{< ref "poetry-python-dependencies-management" >}} +[docker-cache]: {{< ref "docker-images-layers-and-cache" >}} !!! info "Note" I will explain the basics of Docker multi-stage builds required to understand the post but I won't repeat the documentation (see [further reading](#further-reading)).