Skip to content

Commit 3e54a97

Browse files
authored
chore: fix typo in the bake blog post (#332)
Signed-off-by: Jonathan Gonzalez V. <[email protected]>
1 parent 55b02c7 commit 3e54a97

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

content/blog/building-images-bake/bake.hcl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ extensions = [
33
]
44
target "myimage" {
55
dockerfile-inline = <<EOT
6-
ARG BASEIMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
7-
FROM $BASEIMAGE AS myimage
6+
ARG BASE_IMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
7+
FROM $BASE_IMAGE AS myimage
88
ARG EXTENSIONS
99
USER root
1010
RUN apt-get update && \

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ extensions = [
4747
]
4848
target "myimage" {
4949
dockerfile-inline = <<EOT
50-
ARG BASEIMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
51-
FROM $BASEIMAGE AS myimage
50+
ARG BASE_IMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
51+
FROM $BAS_EIMAGE AS myimage
5252
ARG EXTENSIONS
5353
USER root
5454
RUN apt-get update && \

0 commit comments

Comments
 (0)