Skip to content

Commit eb5e5d4

Browse files
smiycsxd
andauthored
chore: fix typo in bake blog post 2 (#333)
Signed-off-by: Daniel Chambre <smiyc@pm.me> Signed-off-by: Jonathan Gonzalez V. <jonathan.abdiel@gmail.com> Co-authored-by: Jonathan Gonzalez V. <jonathan.abdiel@gmail.com>
1 parent 6cd0a5a commit eb5e5d4

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

1.59 MB
Loading

content/blog/building-images-bake/index.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: "Creating a custom container image for CloudNativePG v2.0"
33
date: 2025-07-23
44
draft: false
5+
image:
6+
url: baked_elephant.png
7+
alt: "Baked elephant cookies"
8+
attribution:
59
author: jgonzalez
610
tags:
711
- blog
@@ -21,7 +25,7 @@ summary: Using Docker's Bake to create container images for the CloudNativePG Op
2125
## Summary
2226
Nearly two years ago, we shared a [blog post on building custom container
2327
images for CloudNativePG]({{% ref "/blog/creating-container-images/" %}}). Since then, the container ecosystem has evolved
24-
significantly—one notable development being the introduction of [Docker Bake]((https://docs.docker.com/build/bake/)).
28+
significantly—one notable development being the introduction of [Docker Bake](https://docs.docker.com/build/bake/).
2529

2630
Docker Bake simplifies image builds using a straightforward configuration file,
2731
and it’s now our recommended approach for building CloudNativePG images.
@@ -48,7 +52,7 @@ extensions = [
4852
target "myimage" {
4953
dockerfile-inline = <<EOT
5054
ARG BASE_IMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
51-
FROM $BAS_EIMAGE AS myimage
55+
FROM $BASE_IMAGE AS myimage
5256
ARG EXTENSIONS
5357
USER root
5458
RUN apt-get update && \

0 commit comments

Comments
 (0)