Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/blog/building-images-bake/bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ extensions = [
]
target "myimage" {
dockerfile-inline = <<EOT
ARG BASEIMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
FROM $BASEIMAGE AS myimage
ARG BASE_IMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
FROM $BASE_IMAGE AS myimage
ARG EXTENSIONS
USER root
RUN apt-get update && \
Expand Down
4 changes: 2 additions & 2 deletions content/blog/building-images-bake/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ extensions = [
]
target "myimage" {
dockerfile-inline = <<EOT
ARG BASEIMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
FROM $BASEIMAGE AS myimage
ARG BASE_IMAGE="ghcr.io/cloudnative-pg/postgresql:16.9-standard-bookworm"
FROM $BAS_EIMAGE AS myimage
ARG EXTENSIONS
USER root
RUN apt-get update && \
Expand Down