File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
content/blog/building-images-bake Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ extensions = [
33]
44target "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
88ARG EXTENSIONS
99USER root
1010RUN apt-get update && \
Original file line number Diff line number Diff line change @@ -47,8 +47,8 @@ extensions = [
4747]
4848target "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
5252ARG EXTENSIONS
5353USER root
5454RUN apt-get update && \
You can’t perform that action at this time.
0 commit comments